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