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