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