| 11 | } |
| 12 | |
| 13 | int oidset_contains(const struct oidset *set, const struct object_id *oid) |
| 14 | { |
| 15 | khiter_t pos = kh_get_oid_set(&set->set, *oid); |
| 16 | return pos != kh_end(&set->set); |
| 17 | } |
| 18 | |
| 19 | bool oidset_equal(const struct oidset *a, const struct oidset *b) |
| 20 | { |
no outgoing calls
no test coverage detected