string.h (254B)
1 #ifndef _KERNEL_STRING_H_ 2 #define _KERNEL_STRING_H_ 3 4 #include <stddef.h> 5 6 void *memset(void *, int, size_t); 7 void *memcpy(void *, const void *, size_t); 8 size_t strlen(const char *); 9 int strcmp(const char *, const char *); 10 11 #endif /* _KERNEL_STRING_H_ */