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