Files
mango/libc/string/strlen.c

11 lines
131 B
C
Raw Normal View History

2024-11-02 11:31:51 +00:00
#include <mango/libc/string.h>
size_t strlen(const char *str) {
size_t res = 0;
while (str[res]) {
res++;
}
return res;
}