#ifndef _STRING_H # define _STRING_H char * strchr(const char *s, int c); char * strrchr(const char *s, int c); char *strchrnul(const char *s, int c); size_t strlen(const char *s); size_t strnlen(const char *s, size_t maxlen); #endif /* ifndef _STRING_H */