| 900 | } |
| 901 | |
| 902 | static void show_name(struct grep_opt *opt, const char *name) |
| 903 | { |
| 904 | output_color(opt, name, strlen(name), opt->colors[GREP_COLOR_FILENAME]); |
| 905 | opt->output(opt, opt->null_following_name ? "\0" : "\n", 1); |
| 906 | } |
| 907 | |
| 908 | static int patmatch(struct grep_pat *p, |
| 909 | const char *line, const char *eol, |
no test coverage detected