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