Added a --enable-debug option to configure and
[pspp] / src / quicksort.h
1 #ifndef QUICKSORT_H
2 #define QUICKSORT_H 1
3
4 /* Equivalent to standard C qsort(), but allows passing an extra
5    parameter to the comparison function. */
6 void
7 quicksort (void *pbase, size_t total_elems, size_t size,
8            int (*cmp) (const void *, const void *, void *),
9            void *param);
10
11 #endif /* quicksort.h */