aboutsummaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'string.c')
-rw-r--r--string.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/string.c b/string.c
deleted file mode 100644
index 14bee28..0000000
--- a/string.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef STRING_C
-#define STRING_C
-
-#include <toast.h>
-
-uint64_t strlen(char *string)
-{
- uint64_t l = 0;
- while (string[l] != 0)
- l++;
- return l;
-}
-
-#endif