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