brintos

brintos / llvm-project-archived public Read only

0
0
Text · 197 B · b69fe01 Raw
10 lines · c
1#ifndef ISL_SORT_H2#define ISL_SORT_H3 4#include <stddef.h>5 6int 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#endif10