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