| 577 | } |
| 578 | |
| 579 | struct combine_diff_path *diff_tree_paths( |
| 580 | const struct object_id *oid, |
| 581 | const struct object_id **parents_oid, int nparent, |
| 582 | struct strbuf *base, struct diff_options *opt) |
| 583 | { |
| 584 | struct combine_diff_path *head = NULL, **tail = &head; |
| 585 | ll_diff_tree_paths(&tail, oid, parents_oid, nparent, base, opt, 0); |
| 586 | return head; |
| 587 | } |
| 588 | |
| 589 | /* |
| 590 | * Does it look like the resulting diff might be due to a rename? |
no test coverage detected