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