| 5060 | } |
| 5061 | |
| 5062 | static int apply_option_parse_whitespace(const struct option *opt, |
| 5063 | const char *arg, int unset) |
| 5064 | { |
| 5065 | struct apply_state *state = opt->value; |
| 5066 | |
| 5067 | BUG_ON_OPT_NEG(unset); |
| 5068 | |
| 5069 | state->whitespace_option = arg; |
| 5070 | if (parse_whitespace_option(state, arg)) |
| 5071 | return -1; |
| 5072 | return 0; |
| 5073 | } |
| 5074 | |
| 5075 | static int apply_option_parse_directory(const struct option *opt, |
| 5076 | const char *arg, int unset) |
nothing calls this directly
no test coverage detected