ref: 6bc6f739a4dde17d87b49e44304bd51e226d3720 dir: /libc/strlen.c/
unsigned int strlen(char *s) { int i = 0; while(s[i] != '\0') i++; return i; }