You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

6 lines
231 B

#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);