diff options
Diffstat (limited to 'sys/include/lib/string.h')
-rw-r--r-- | sys/include/lib/string.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/lib/string.h b/sys/include/lib/string.h index 8500af2..e83f4f1 100644 --- a/sys/include/lib/string.h +++ b/sys/include/lib/string.h @@ -44,6 +44,8 @@ int memcmp(const void *s1, const void *s2, size_t n); void *memset(void *s, int c, size_t n); int strcmp(const char *s1, const char *s2); + int strncmp(const char *s1, const char *s2, size_t n); +int atoi(char *s); #endif /* !_LIB_STRING_H_ */ |