| 3741 | } |
| 3742 | |
| 3743 | void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b) |
| 3744 | { |
| 3745 | if (!options->a_prefix) |
| 3746 | options->a_prefix = a; |
| 3747 | if (!options->b_prefix) |
| 3748 | options->b_prefix = b; |
| 3749 | } |
| 3750 | |
| 3751 | void diff_set_noprefix(struct diff_options *options) |
| 3752 | { |
no outgoing calls
no test coverage detected