#ifndef _STRING_H_ #define _STRING_H_ #include void *memset(void *s, int c, size_t n); size_t strlen(const char *s); #endif