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