| 531 | } |
| 532 | |
| 533 | int bsearch_midx(const struct object_id *oid, struct multi_pack_index *m, |
| 534 | uint32_t *result) |
| 535 | { |
| 536 | for (; m; m = m->base_midx) |
| 537 | if (bsearch_one_midx(oid, m, result)) |
| 538 | return 1; |
| 539 | return 0; |
| 540 | } |
| 541 | |
| 542 | int midx_has_oid(struct multi_pack_index *m, const struct object_id *oid) |
| 543 | { |
no test coverage detected