reimplmenets the previous iteration with a brand new custom build system
This commit is contained in:
8
libc/string/strlen.libk.c
Normal file
8
libc/string/strlen.libk.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <string.h>
|
||||
|
||||
size_t strlen(const char* str) {
|
||||
size_t len = 0;
|
||||
while (str[len])
|
||||
len++;
|
||||
return len;
|
||||
}
|
Reference in New Issue
Block a user