From 4b178c0feb4c415be36be0e4c0def8c447ed42af Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 22 Nov 2019 22:17:54 +0100 Subject: Added the most awesome c lib --- src/mlibc/string/strlen.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/mlibc/string/strlen.c (limited to 'src/mlibc/string/strlen.c') diff --git a/src/mlibc/string/strlen.c b/src/mlibc/string/strlen.c new file mode 100644 index 0000000..1143683 --- /dev/null +++ b/src/mlibc/string/strlen.c @@ -0,0 +1,7 @@ +#include + +size_t strlen(const char *str) { + size_t len = 0; + while (str[len]) len++; + return len; +} \ No newline at end of file -- cgit v1.2.3