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