Header: string.h Purpose: Declares the ANSI C string functions. File: string.h Author: K.G. Begeman Use: #include "string.h" Declares: char *strcpy(char *s, const char *ct); char *strncpy( char *s, const char *ct, size_t n); char *strcat(char *s, const char *ct); char *strncat(char *s, const char *ct, size_t n); char *strchr(const char *cs, int c); char *strrchr(const char *cs, int c); char *strpbrk(const char *cs, const char *ct); char *strstr(const char *cs, const char *ct); char *strerror(size_t n); char *strtok(char *s, const char *ct); int memcmp(const void *cs, const void *ct, size_t n); int strcmp(const char *cs, const char *ct); int strncmp(const char *cs, const char *ct, size_t n); size_t strspn(const char *cs, const char *ct); size_t strcspn(const char *cs, const char *ct); size_t strlen(const char *cs); void *memcpy(void *s, const void *ct, size_t n); void *memmove(void *s, const void *ct, size_t n); void *memchr(const coid *cs, int c, size_t n); void *memset(void *s, int c, size_t n); Warning: System dependent! At the moment implemented for ALLIANT, CONVEX, DEC ALPHA, DEC ULTRIX, HP9000, SILICON GRAPHICS, SUN and DEC VMS. Updates: Apr 8, 1990: KGB, Document created. Jun 8, 2009: JPT, Linux now includes from system