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