string.h (289B)
1 #ifndef __STRING_H 2 #define __STRING_H 3 4 #include <inttypes.h> 5 6 void *memset(void *s, int c, size_t n); 7 void *memcpy(void *s1, const void *s2, size_t n); 8 void *memmove(void *dest, const void *src, size_t count); 9 int memcmp(const void *s1, const void *s2, size_t n); 10 11 #endif /* __STRING_H */