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