|
|
1.1 ! root 1: /*** ! 2: *string.h - declarations for string manipulation functions ! 3: * ! 4: * Copyright (c) 1985-1990, 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: ! 20: /* function prototypes */ ! 21: ! 22: void * _cdecl memccpy(void *, const void *, int, unsigned int); ! 23: void * _cdecl memchr(const void *, int, size_t); ! 24: int _cdecl memcmp(const void *, const void *, size_t); ! 25: int _cdecl memicmp(const void *, const void *, unsigned int); ! 26: void * _cdecl memcpy(void *, const void *, size_t); ! 27: void * _cdecl memmove(void *, const void *, size_t); ! 28: void * _cdecl memset(void *, int, size_t); ! 29: void _cdecl movedata(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); ! 30: ! 31: char * _cdecl strcat(char *, const char *); ! 32: char * _cdecl strchr(const char *, int); ! 33: int _cdecl strcmp(const char *, const char *); ! 34: int _cdecl strcmpi(const char *, const char *); ! 35: int _cdecl strcoll(const char *, const char *); ! 36: int _cdecl stricmp(const char *, const char *); ! 37: char * _cdecl strcpy(char *, const char *); ! 38: size_t _cdecl strcspn(const char *, const char *); ! 39: char * _cdecl strdup(const char *); ! 40: char * _cdecl _strerror(const char *); ! 41: char * _cdecl strerror(int); ! 42: size_t _cdecl strlen(const char *); ! 43: char * _cdecl strlwr(char *); ! 44: char * _cdecl strncat(char *, const char *, size_t); ! 45: int _cdecl strncmp(const char *, const char *, size_t); ! 46: int _cdecl strnicmp(const char *, const char *, size_t); ! 47: char * _cdecl strncpy(char *, const char *, size_t); ! 48: char * _cdecl strnset(char *, int, size_t); ! 49: char * _cdecl strpbrk(const char *, const char *); ! 50: char * _cdecl strrchr(const char *, int); ! 51: char * _cdecl strrev(char *); ! 52: char * _cdecl strset(char *, int); ! 53: size_t _cdecl strspn(const char *, const char *); ! 54: char * _cdecl strstr(const char *, const char *); ! 55: char * _cdecl strtok(char *, const char *); ! 56: char * _cdecl strupr(char *); ! 57: size_t _cdecl strxfrm (char *, const char *, size_t);
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.