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