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