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