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