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