diff options
Diffstat (limited to 'src/include/string.h')
-rw-r--r-- | src/include/string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/string.h b/src/include/string.h index e752f8f531..dc301ea966 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -16,10 +16,10 @@ char *strconcat(const char *s1, const char *s2); size_t strnlen(const char *src, size_t max); size_t strlen(const char *src); char *strchr(const char *s, int c); -char *strncpy(char *to, const char *from, int count); +char *strncpy(char *to, const char *from, size_t 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 strncmp(const char *s1, const char *s2, size_t maxlen); int strspn(const char *str, const char *spn); int strcspn(const char *str, const char *spn); char *strstr(const char *haystack, const char *needle); |