aboutsummaryrefslogtreecommitdiff
path: root/src/lib/string.c
diff options
context:
space:
mode:
authormarvinborner2019-09-18 11:03:36 +0200
committermarvinborner2019-09-18 11:03:36 +0200
commitc33bc6864a3291dc72b2da071e52e481573f5459 (patch)
tree2b564a8b874d97acc9faa0308322496a88c9e5bf /src/lib/string.c
parent8e0c4dc52871e720f793db0b21e1b4f504cefcf9 (diff)
Added missing components
Diffstat (limited to 'src/lib/string.c')
-rw-r--r--src/lib/string.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/string.c b/src/lib/string.c
new file mode 100644
index 0000000..a4be160
--- /dev/null
+++ b/src/lib/string.c
@@ -0,0 +1,14 @@
+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;
+}