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