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