home *** CD-ROM | disk | FTP | other *** search
- /* STRING.H */
-
- #ifndef size_t
- #define size_t int
- #endif
-
- char *strcat(char *s1, const char *s2);
-
- char *strncat(char *s1, const char *s2, size_t n);
-
- char *strcpy(char *s1, const char *s2);
-
- char *strncpy(char *s1, const char *s2, size_t n);
-
- size_t strlen(const char *s);
-
- int strcmp(const char *s1, const char *s2);
-
- int strncmp(const char *s1, const char *s2, size_t n);
-
-
-
-