| 592 | } |
| 593 | |
| 594 | static struct grep_expr *grep_or_expr(struct grep_expr *left, struct grep_expr *right) |
| 595 | { |
| 596 | return grep_binexp(GREP_NODE_OR, left, right); |
| 597 | } |
| 598 | |
| 599 | static struct grep_expr *grep_and_expr(struct grep_expr *left, struct grep_expr *right) |
| 600 | { |
no test coverage detected