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