1 2 3 4 5 6 7 8 9 10 11 12 13
// // Created by joe on 1/14/17. // #ifndef QSORT_MQSORT_H #define QSORT_MQSORT_H #include <cstdint> #include <cstdlib> void mqsort(void *base, size_t num, size_t size, int (*compar)(const void *, const void *)); #endif //QSORT_QSORT_H