#ifndef STRING_H #define STRING_H #include #define NULL ((void *)0) bool isdigit(char c); size_t strlen(const char *s); size_t strnlen(const char *s, size_t maxlen); char *strcpy(char *restrict dst, const char *restrict src); void *memset(void *s, int c, size_t n); #endif /* STRING_H */