diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/string.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/string.h b/src/include/string.h index 30241303eb..d3f09ff102 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -32,6 +32,9 @@ char *strncpy(char *to, const char *from, int count); char *strcpy(char *dst, const char *src); int strcmp(const char *s1, const char *s2); int strncmp(const char *s1, const char *s2, int maxlen); +int strspn(const char *str, const char *spn); +int strcspn(const char *str, const char *spn); +long atol(const char *str); /** * Find a character in a string. |