| 182 | } |
| 183 | |
| 184 | static void add_arg_to_input_list(struct trailer_item *on_tok, |
| 185 | struct arg_item *arg_tok) |
| 186 | { |
| 187 | int aoe = after_or_end(arg_tok->conf.where); |
| 188 | struct trailer_item *to_add = trailer_from_arg(arg_tok); |
| 189 | if (aoe) |
| 190 | list_add(&to_add->list, &on_tok->list); |
| 191 | else |
| 192 | list_add_tail(&to_add->list, &on_tok->list); |
| 193 | } |
| 194 | |
| 195 | static int check_if_different(struct trailer_item *in_tok, |
| 196 | struct arg_item *arg_tok, |
no test coverage detected