| 696 | } |
| 697 | |
| 698 | static struct grep_expr *grep_true_expr(void) |
| 699 | { |
| 700 | struct grep_expr *z = xcalloc(1, sizeof(*z)); |
| 701 | z->node = GREP_NODE_TRUE; |
| 702 | return z; |
| 703 | } |
| 704 | |
| 705 | static struct grep_expr *prep_header_patterns(struct grep_opt *opt) |
| 706 | { |
no test coverage detected