home *** CD-ROM | disk | FTP | other *** search
- void *memchr(void *buf, int c, int count);
- int memcmp(void *buf1, void *buf2, int n);
- void *memcpy(void *buf1, void *buf2, int count);
- void *memmove(void *buf1, void *buf2, int count);
- void *memset(void *buf, int val, int n);
-
- char *strcat(char *buf1, char *buf2);
- char *strchr(char *str, int c);
- int strcmp(char *str1, char *str2);
- char *strcpy(char *buf1, char *buf2);
- char *strdup(char *str);
- int strlen(char *str);
- char *strlwr(char *str);
- char *strncat(char *buf1, char *buf2, int n);
- int strncmp(char *buf1, char *buf2, int n);
- char *strncpy(char *buf1, char *buf2, int n);
- int strnicmp(char *buf1, char *buf2, int n);
- char *strpbrk(char *str1, char *str2);
- char *strrchr(char *buf, int c);
- char *strrev(char *str);
- int strspn(char *str1, char *str2);
- char *strupr(char *str);
-