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