1 2 3 4 5 6 7 8
#ifndef _STRING_H #define _STRING_H #include <stddef.h> void *memset(void *s, int c, size_t n); #endif /* _STRING_H */