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