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