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