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