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