mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
0ab226f739
They'll be removed on demand in libgen repo
11 lines
293 B
C
11 lines
293 B
C
#ifdef INTELLISENSE_DIRECTIVES
|
|
# include "platform.h"
|
|
#endif
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Sorts
|
|
|
|
#ifndef md_quick_sort
|
|
#define md_quick_sort(ptr, count, element_size, cmp_function) qsort((ptr), (count), (element_size), (int (*)(const void *, const void *))(cmp_function))
|
|
#endif
|