1 2 3 4 5 6 7 8 9 10 11
#ifndef STRING_H #define STRING_H #include "../../include/string.h" void *__memrchr(const void *, int, size_t); char *__stpcpy(char *, const char *); char *__stpncpy(char *, const char *, size_t); char *__strchrnul(const char *, int); #endif