Files
ed 0ab226f739 adding prefixes to source
They'll be removed on demand in libgen repo
2025-02-12 14:40:11 -05:00

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