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