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