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