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