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