summaryrefslogtreecommitdiff
path: root/sys/include/lib/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include/lib/string.h')
-rw-r--r--sys/include/lib/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/lib/string.h b/sys/include/lib/string.h
index c138cf1..3255ae5 100644
--- a/sys/include/lib/string.h
+++ b/sys/include/lib/string.h
@@ -35,6 +35,7 @@
size_t strlen(const char *s);
char *itoa(int64_t value, char *buf, int base);
+char *strdup(const char *s);
int vsnprintf(char *s, size_t size, const char *fmt, va_list ap);
int snprintf(char *s, size_t size, const char *fmt, ...);
@@ -47,5 +48,6 @@ int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, size_t n);
int atoi(char *s);
+void *memmove(void *s1, const void *s2, size_t n);
#endif /* !_LIB_STRING_H_ */