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