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