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