repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isl_space_range: rename "dim" argument to "space"
[isl.git]
/
isl_sort.h
blob
b69fe01d9919027e35a1b7335402b2384518639f
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