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