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