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