oid-array: make sort function public
We sort the oid-array as a side effect of calling the lookup or unique-iteration functions. But callers may want to sort it themselves (especially as we add new iteration options in future patches). We'll also move the check of the "sorted" flag into the sort function, so callers don't have to remember to check it. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
3fa6f2aa57
commit
d0482b445b
@ -106,4 +106,9 @@ void oid_array_filter(struct oid_array *array,
|
||||
for_each_oid_fn want,
|
||||
void *cbdata);
|
||||
|
||||
/**
|
||||
* Sort the array in order of ascending object id.
|
||||
*/
|
||||
void oid_array_sort(struct oid_array *array);
|
||||
|
||||
#endif /* OID_ARRAY_H */
|
||||
|
Reference in New Issue
Block a user