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