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