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