int main(void) {
"This is plain.\n",
"This was styled by the previous ColorArg.\n",
"This is normal because of the 'reset code' that came before it.\n",
);
printf("%s\n", colorized);
free(colorized);
char *allocated;
asprintf(&allocated, "\nThis is my string #%d\n", 1);
"This one should not be free'd though.\n"
);
printf("%s", colored);
free(colored);
free(allocated);
char* msg = "Colorize your program.";
);
"\n",
"\n",
40
),
"[",
" v. ",
),
38
),
"]"
),
"[",
"]"
)
),
"\n"
)
);
}