mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 10:34:41 +01:00
10 lines
197 B
C
10 lines
197 B
C
#ifndef ISL_SORT_H
|
|
#define ISL_SORT_H
|
|
|
|
#include <stddef.h>
|
|
|
|
int isl_sort(void *const pbase, size_t total_elems, size_t size,
|
|
int (*cmp)(const void *, const void *, void *arg), void *arg);
|
|
|
|
#endif
|