| 24 | } |
| 25 | |
| 26 | struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) |
| 27 | { |
| 28 | struct expr *e = xcalloc(1, sizeof(*e)); |
| 29 | e->type = type; |
| 30 | e->left.expr = ce; |
| 31 | return e; |
| 32 | } |
| 33 | |
| 34 | struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) |
| 35 | { |
no test coverage detected