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