add deprecated (removed from posix) [efg]cvt() functions
[musl] / include / string.h
index 00c8e8f..a5b5a51 100644 (file)
@@ -69,10 +69,14 @@ size_t strlcpy (char *, const char *, size_t);
 #endif
 
 #ifdef _GNU_SOURCE
+int strverscmp (const char *, const char *);
 int strcasecmp (const char *, const char *);
 int strncasecmp (const char *, const char *, size_t);
 char *strchrnul(const char *, int);
 char *strcasestr(const char *, const char *);
+char *strsep(char **, const char *);
+void *memrchr(const void *, int, size_t);
+void *mempcpy(void *, const void *, size_t);
 #endif
 
 #ifdef __cplusplus