Annotation of os2sdk/include/string.h, revision 1.1

1.1     ! root        1: /***
        !             2: *string.h - declarations for string manipulation functions
        !             3: *
        !             4: *   Copyright (c) 1985-1987, Microsoft Corporation.  All rights reserved.
        !             5: *
        !             6: *Purpose:
        !             7: *   This file contains the function declarations for the string
        !             8: *   manipulation functions.
        !             9: *   [ANSI/System V]
        !            10: *
        !            11: *******************************************************************************/
        !            12: 
        !            13: 
        !            14: #ifndef _SIZE_T_DEFINED
        !            15: typedef unsigned int size_t;
        !            16: #define _SIZE_T_DEFINED
        !            17: #endif
        !            18: 
        !            19: #ifndef NO_EXT_KEYS /* extensions enabled */
        !            20:     #define _CDECL  cdecl
        !            21: #else /* extensions not enabled */
        !            22:     #define _CDECL
        !            23: #endif /* NO_EXT_KEYS */
        !            24: 
        !            25: 
        !            26: /* function prototypes */
        !            27: 
        !            28: void * _CDECL memccpy(void *, void *, int, unsigned int);
        !            29: void * _CDECL memchr(const void *, int, size_t);
        !            30: int _CDECL memcmp(const void *, const void *, size_t);
        !            31: int _CDECL memicmp(void *, void *, unsigned int);
        !            32: void * _CDECL memcpy(void *, const void *, size_t);
        !            33: void * _CDECL memmove(void *, const void *, size_t);
        !            34: void * _CDECL memset(void *, int, size_t);
        !            35: void _CDECL movedata(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);
        !            36: 
        !            37: char * _CDECL strcat(char *, const char *);
        !            38: char * _CDECL strchr(const char *, int);
        !            39: int _CDECL strcmp(const char *, const char *);
        !            40: int _CDECL strcmpi(const char *, const char *);
        !            41: int _CDECL stricmp(const char *, const char *);
        !            42: char * _CDECL strcpy(char *, const char *);
        !            43: size_t _CDECL strcspn(const char *, const char *);
        !            44: char * _CDECL strdup(const char *);
        !            45: char * _CDECL _strerror(char *);
        !            46: char * _CDECL strerror(int);
        !            47: size_t _CDECL strlen(const char *);
        !            48: char * _CDECL strlwr(char *);
        !            49: char * _CDECL strncat(char *, const char *, size_t);
        !            50: int _CDECL strncmp(const char *, const char *, size_t);
        !            51: int _CDECL strnicmp(const char *, const char *, size_t);
        !            52: char * _CDECL strncpy(char *, const char *, size_t);
        !            53: char * _CDECL strnset(char *, int, size_t);
        !            54: char * _CDECL strpbrk(const char *, const char *);
        !            55: char * _CDECL strrchr(const char *, int);
        !            56: char * _CDECL strrev(char *);
        !            57: char * _CDECL strset(char *, int);
        !            58: size_t _CDECL strspn(const char *, const char *);
        !            59: char * _CDECL strstr(const char *, const char *);
        !            60: char * _CDECL strtok(char *, const char *);
        !            61: char * _CDECL strupr(char *);

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.