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