8 The reason for using this instead of C's qsort is
9 that we need more context information than just the
10 two objects if we want to do something like use an
11 Io block to do the comparison and using globals is
12 unacceptable for several reasons.
21 typedef int (SDSortCompareCallback
)(void *context
, int i
, int j
);
22 typedef void (SDSortSwapCallback
)(void *context
, int i
, int j
);
24 BASEKIT_API
void Sorting_context_comp_swap_size_type_(void *context
,
25 SDSortCompareCallback
*comp
,
26 SDSortSwapCallback
*swap
,