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