aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string.c
diff options
context:
space:
mode:
authorMarvin Borner2019-09-19 19:56:59 +0200
committerMarvin Borner2019-09-19 20:05:38 +0200
commit05e1fedcc9cd30d1a34a65e640da45e980b4f859 (patch)
tree9cfb7620907ac126f26cdfe9363cb73ed74ea179 /src/kernel/lib/string.c
parentffd82e18b5259fab477ad375a7af8550fac526d8 (diff)
Moved source to kernel directory
Diffstat (limited to 'src/kernel/lib/string.c')
-rw-r--r--src/kernel/lib/string.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/kernel/lib/string.c b/src/kernel/lib/string.c
new file mode 100644
index 0000000..6ef0316
--- /dev/null
+++ b/src/kernel/lib/string.c
@@ -0,0 +1,27 @@
+#include <stddef.h>
+
+size_t strlen(const char *str) {
+ size_t len = 0;
+ while (str[len])
+ len++;
+ return len;
+}
+
+size_t strcmp(const char *s1, const char *s2) {
+ while (*s1 && (*s1 == *s2)) {
+ s1++;
+ s2++;
+ }
+ return *(const unsigned char *) s1 - *(const unsigned char *) s2;
+}
+
+char *strcat(char *dst, const char *src) {
+ unsigned int i = 0;
+ unsigned int j = 0;
+ for (i = 0; dst[i] != 0; i++) {}
+ for (j = 0; src[j] != 0; j++) {
+ dst[i + j] = src[j];
+ }
+ dst[i + j] = 0;
+ return dst;
+}