| 4 | #include "strbuf.h" |
| 5 | |
| 6 | void oidset_init(struct oidset *set, size_t initial_size) |
| 7 | { |
| 8 | memset(&set->set, 0, sizeof(set->set)); |
| 9 | if (initial_size) |
| 10 | kh_resize_oid_set(&set->set, initial_size); |
| 11 | } |
| 12 | |
| 13 | int oidset_contains(const struct oidset *set, const struct object_id *oid) |
| 14 | { |
no outgoing calls
no test coverage detected