diff options
Diffstat (limited to 'src/user/lib/include/string.h')
-rw-r--r-- | src/user/lib/include/string.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/user/lib/include/string.h b/src/user/lib/include/string.h index 5cddb61..7235da9 100644 --- a/src/user/lib/include/string.h +++ b/src/user/lib/include/string.h @@ -9,3 +9,5 @@ size_t strcspn(const char *s, const char *reject); char *strtok(char *restrict s, const char *restrict sep); char *strtok_r(char *restrict s, const char *restrict sep, char **restrict state); + +int strncmp(const char *s1, const char *s2, size_t n); |