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