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