declare __env_rm_add in wrapper stdlib.h
[oweals/musl.git] / src / include / string.h
1 #ifndef STRING_H
2 #define STRING_H
3
4 #include "../../include/string.h"
5
6 void *__memrchr(const void *, int, size_t);
7 char *__stpcpy(char *, const char *);
8 char *__stpncpy(char *, const char *, size_t);
9 char *__strchrnul(const char *, int);
10
11 #endif