diff options
Diffstat (limited to 'include/string.h')
-rw-r--r-- | include/string.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/string.h b/include/string.h index b557c65f39..1ee7ced249 100644 --- a/include/string.h +++ b/include/string.h @@ -1 +1,8 @@ #include <string/string.h> + +/* Now define the internal interfaces. */ +extern __ptr_t __memccpy __P ((__ptr_t __dest, __const __ptr_t __src, + int __c, size_t __n)); +extern size_t __strnlen __P ((__const char *__string, size_t __maxlen)); +extern char *__strsep __P ((char **__stringp, __const char *__delim)); +extern int __strverscmp __P ((__const char *__s1, __const char *__s2)); |