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