| 892 | } |
| 893 | |
| 894 | static void output_sep(struct grep_opt *opt, char sign) |
| 895 | { |
| 896 | if (opt->null_following_name) |
| 897 | opt->output(opt, "\0", 1); |
| 898 | else |
| 899 | output_color(opt, &sign, 1, opt->colors[GREP_COLOR_SEP]); |
| 900 | } |
| 901 | |
| 902 | static void show_name(struct grep_opt *opt, const char *name) |
| 903 | { |
no test coverage detected