isl_tab_pip.c: sol_pop: avoid invalid access on error
[isl.git] / isl_sort.h
blobb69fe01d9919027e35a1b7335402b2384518639f
1 #ifndef ISL_SORT_H
2 #define ISL_SORT_H
4 #include <stddef.h>
6 int isl_sort(void *const pbase, size_t total_elems, size_t size,
7 int (*cmp)(const void *, const void *, void *arg), void *arg);
9 #endif