| 489 | } |
| 490 | |
| 491 | static void patch_diff(const char *a, const char *b, |
| 492 | struct diff_options *diffopt) |
| 493 | { |
| 494 | diff_queue(&diff_queued_diff, |
| 495 | get_filespec("a", a), get_filespec("b", b)); |
| 496 | |
| 497 | diffcore_std(diffopt); |
| 498 | diff_flush(diffopt); |
| 499 | } |
| 500 | |
| 501 | static const char *output_prefix_cb(struct diff_options *opt UNUSED, void *data) |
| 502 | { |
no test coverage detected