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