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