orion_old/libc/string/strlen.c

9 lines
113 B
C

#include <string.h>
size_t strlen(const char* str) {
size_t len = 0;
while (str[len])
len++;
return len;
}