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