summaryrefslogtreecommitdiff
path: root/src/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.h')
-rw-r--r--src/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string.h b/src/string.h
index 5efd35a..c3e3145 100644
--- a/src/string.h
+++ b/src/string.h
@@ -6,5 +6,7 @@
void *memset( void *s, int c, size_t n );
void *memmove( void *d, const void *s, size_t n );
size_t strlen( const char *s );
+int strcmp( const char *s1, const char *s2 );
+size_t strlcpy( char *d, const char *s, size_t n );
#endif /* STRING_H */