| 25 | } |
| 26 | |
| 27 | void oid_array_sort(struct oid_array *array) |
| 28 | { |
| 29 | if (array->sorted) |
| 30 | return; |
| 31 | QSORT(array->oid, array->nr, void_hashcmp); |
| 32 | array->sorted = 1; |
| 33 | } |
| 34 | |
| 35 | static const struct object_id *oid_access(size_t index, const void *table) |
| 36 | { |
no outgoing calls
no test coverage detected