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