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