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