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