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