X-Git-Url: http://git.buserror.net/cgi-bin/gitweb.cgi?p=polintos%2Fscott%2Fpriv.git;a=blobdiff_plain;f=include%2Fc%2Fstd%2Fstring.h;h=e50633c277fee3121c1b1dc309cdda54070a3818;hp=6c2f4c9becdec0dfa6c69f3e2919caa3cb1e5c83;hb=139f54779f6395a1828261423cd8013ca940ff36;hpb=00929a1561b0f510a582f9876affa96e4fccb72a diff --git a/include/c/std/string.h b/include/c/std/string.h index 6c2f4c9..e50633c 100644 --- a/include/c/std/string.h +++ b/include/c/std/string.h @@ -18,7 +18,7 @@ extern "C" { char *strcat(char *dest, const char *src); char *strncat(char *dest, const char *src, size_t len); int strcmp(const char *s1, const char *s2); - int strncmp(const char *s1, const char *s2, int n); + int strncmp(const char *s1, const char *s2, size_t n); #ifdef __cplusplus char *strchr(char *s, int c);