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