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