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