box-o-sand/lcthw-remnants-2/liblcthw/src/lcthw/darray_algos.h
2016-04-18 09:42:33 -04:00

15 lines
324 B
C

#ifndef lcthw_DArray_algos_h
#define lcthw_DArray_algos_h
#include <lcthw/darray.h>
typedef int (*DArray_compare)(const void *a, const void *b);
int DArray_qsort(DArray *array, DArray_compare cmp);
int DArray_heapsort(DArray *array, DArray_compare cmp);
int DArray_mergesort(DArray *array, DArray_compare cmp);
#endif