• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef ISL_SORT_H
2 #define ISL_SORT_H
3 
4 #include <stddef.h>
5 
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);
8 
9 #endif
10