| 32 | } |
| 33 | |
| 34 | static void title(FILE *fp, const help_colors *c, const char *s) { |
| 35 | fprintf(fp, "%s%s%s\n", c->title ? c->title : "", s, c->off ? c->off : ""); |
| 36 | } |
| 37 | |
| 38 | static void title_red(FILE *fp, const help_colors *c, const char *s) { |
| 39 | fprintf(fp, "%s%s%s\n", c->red ? c->red : "", s, c->off ? c->off : ""); |
no outgoing calls
no test coverage detected