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