zapret/ip2net/qsort.h

7 lines
233 B
C
Raw Permalink Normal View History

2024-10-28 11:32:24 +05:00
#pragma once
// GNU qsort is 2x faster than musl
typedef int (*__gnu_compar_d_fn_t) (const void *, const void *, void *);
void gnu_quicksort (void *const pbase, size_t total_elems, size_t size, __gnu_compar_d_fn_t cmp, void *arg);