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