summaryrefslogtreecommitdiffstats
path: root/lib/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/string.c')
-rw-r--r--lib/string.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/string.c b/lib/string.c
deleted file mode 100644
index 4bb1bad..0000000
--- a/lib/string.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "string.h"
-
-size_t strlen(const char *s) {
- size_t l = 0;
- for(; *s != 0; s++, l++);
- return l;
-}
-
-int strcmp(const char *a, const char *b)
-{
- size_t i = 0;
- for(; a[i] != 0 && b[i] != 0; i++) {
- if(a[i] != b[i]) return a[i] - b[i];
- }
- return a[i] - b[i];
-}