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