/* *----------------------------------------------------------------------------- * * string.h -- * * Subset of the ISO C header file string.h. * *----------------------------------------------------------------------------- */ #ifndef _STRING_H #define _STRING_H #include extern void *memcpy (void *dest, const void *src, size_t n); extern void *memset (void *s, int c, size_t n); extern size_t strlen (const char *s); extern char *strncat (char *dest, const char *src, size_t n); extern char *strcat (char *dest, const char *src); extern char *strncpy (char *dest, const char *src, size_t n); extern char *strcpy (char *dest, const char *src); #endif /* !_STRING_H */