| 578 | } |
| 579 | |
| 580 | void strbuf_add_unique_abbrev(struct strbuf *sb, const struct object_id *oid, |
| 581 | int abbrev_len) |
| 582 | { |
| 583 | strbuf_repo_add_unique_abbrev(sb, the_repository, oid, abbrev_len); |
| 584 | } |
| 585 | |
| 586 | int repo_find_unique_abbrev_r(struct repository *r, char *hex, |
| 587 | const struct object_id *oid, int min_len) |
no test coverage detected