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