box-o-sand/lcthw-remnants-2/liblcthw/src/lcthw/darray_algos.h

15 lines
324 B
C
Raw Normal View History

2016-04-18 13:42:33 +00:00
#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