summaryrefslogtreecommitdiff
path: root/src/libc/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libc/string.h')
-rw-r--r--src/libc/string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libc/string.h b/src/libc/string.h
index f078d48..09028c1 100644
--- a/src/libc/string.h
+++ b/src/libc/string.h
@@ -9,6 +9,7 @@ void *memcpy( void *d, const void *s, size_t n );
size_t strlen( const char *s );
int strcmp( const char *s1, const char *s2 );
+int strncmp( const char *s1, const char *s2, size_t n );
size_t strlcpy( char *d, const char *s, size_t n );
size_t strlcat( char *d, const char *s, size_t n );