ref: 723dcdf945237c6fa70e4f964cfce71d963ec90f dir: /libc/strlen.c/
unsigned int strlen(char *s) { int i = 0; while(s[i] != '\0') i++; return i; }