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