summaryrefslogtreecommitdiff
path: root/include/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/string.h')
-rw-r--r--include/string.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/string.h b/include/string.h
index 34ef555..0d805ea 100644
--- a/include/string.h
+++ b/include/string.h
@@ -32,4 +32,20 @@ extern void *memcpy (void *dest, const void *src, size_t n);
extern void *memset (void *s, int c, size_t n);
+extern char *strchr (const char *s, int c);
+
+extern char *strcpy (char *dest, const char *src);
+
+extern char *strncpy (char *dest, const char *src, size_t n);
+
+extern char *strrchr (const char *s, int c);
+
+extern char *strsep (char **strp, const char *delim);
+
+extern int strcmp (const char *s1, const char *s2);
+
+extern int strncmp (const char *s1, const char *s2, size_t n);
+
+extern size_t strlen (const char *s);
+
#endif /* _MACH_SA_SYS_STRING_H_ */