| 26 | static enum trailer_if_missing if_missing; |
| 27 | |
| 28 | static int option_parse_where(const struct option *opt, |
| 29 | const char *arg, int unset UNUSED) |
| 30 | { |
| 31 | /* unset implies NULL arg, which is handled in our helper */ |
| 32 | return trailer_set_where(opt->value, arg); |
| 33 | } |
| 34 | |
| 35 | static int option_parse_if_exists(const struct option *opt, |
| 36 | const char *arg, int unset UNUSED) |
nothing calls this directly
no test coverage detected