| 33 | } |
| 34 | |
| 35 | int oidset_insert(struct oidset *set, const struct object_id *oid) |
| 36 | { |
| 37 | int added; |
| 38 | kh_put_oid_set(&set->set, *oid, &added); |
| 39 | return !added; |
| 40 | } |
| 41 | |
| 42 | void oidset_insert_from_set(struct oidset *dest, struct oidset *src) |
| 43 | { |
no outgoing calls