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