| 15 | } |
| 16 | |
| 17 | static int cmd__userdiff_config(const char *var, const char *value, |
| 18 | const struct config_context *ctx UNUSED, |
| 19 | void *cb UNUSED) |
| 20 | { |
| 21 | if (userdiff_config(var, value) < 0) |
| 22 | return -1; |
| 23 | return 0; |
| 24 | } |
| 25 | |
| 26 | int cmd__userdiff(int argc, const char **argv) |
| 27 | { |
nothing calls this directly
no test coverage detected