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