| 1107 | } |
| 1108 | |
| 1109 | static int match_expr(struct grep_opt *opt, |
| 1110 | const char *bol, const char *eol, |
| 1111 | enum grep_context ctx, ssize_t *col, |
| 1112 | ssize_t *icol, int collect_hits) |
| 1113 | { |
| 1114 | struct grep_expr *x = opt->pattern_expression; |
| 1115 | return match_expr_eval(opt, x, bol, eol, ctx, col, icol, collect_hits); |
| 1116 | } |
| 1117 | |
| 1118 | static int match_line(struct grep_opt *opt, |
| 1119 | const char *bol, const char *eol, |
no test coverage detected