aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/str.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/inc/str.h')
-rw-r--r--libc/inc/str.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/inc/str.h b/libc/inc/str.h
new file mode 100644
index 0000000..65774e7
--- /dev/null
+++ b/libc/inc/str.h
@@ -0,0 +1,17 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef STR_H
+#define STR_H
+
+#include <def.h>
+
+u32 strlen(const char *s);
+char *strcpy(char *dst, const char *src);
+char *strchr(const char *s, int c);
+char *strcat(char *dst, const char *src);
+int strcmp(const char *s1, const char *s2);
+int strncmp(const char *s1, const char *s2, u32 n);
+char *strinv(char *s);
+char *strdup(const char *s);
+
+#endif