| 597 | } |
| 598 | |
| 599 | static struct grep_expr *grep_and_expr(struct grep_expr *left, struct grep_expr *right) |
| 600 | { |
| 601 | return grep_binexp(GREP_NODE_AND, left, right); |
| 602 | } |
| 603 | |
| 604 | static struct grep_expr *compile_pattern_or(struct grep_pat **); |
| 605 | static struct grep_expr *compile_pattern_atom(struct grep_pat **list) |
no test coverage detected