summaryrefslogtreecommitdiff
path: root/kern/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'kern/string.h')
-rw-r--r--kern/string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/string.h b/kern/string.h
index 86786c2b..35490ffa 100644
--- a/kern/string.h
+++ b/kern/string.h
@@ -28,6 +28,7 @@ size_t strlen(const char *s);
char * strcpy(char *dest, const char *src);
size_t strlcpy(char *dest, const char *src, size_t n);
int strcmp(const char *s1, const char *s2);
+int strncmp(const char *s1, const char *s2, size_t n);
char * strchr(const char *s, int c);
#endif /* _KERN_STRING_H */