mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
11 lines
287 B
C
11 lines
287 B
C
#ifdef INTELLISENSE_DIRECTIVES
|
|
# include "platform.h"
|
|
#endif
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Sorts
|
|
|
|
#ifndef quick_sort
|
|
#define quick_sort(ptr, count, element_size, cmp_function) qsort((ptr), (count), (element_size), (int (*)(const void *, const void *))(cmp_function))
|
|
#endif
|