diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2017-01-14 14:32:40 -0700 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2017-01-14 14:32:40 -0700 |
commit | 18607258a9516a6e809f9b996902759f5c6df263 (patch) | |
tree | 1f31397d611a15b106a9ea32d82f3f4d91708bd3 /mqsort.h | |
parent | 0bf5200abc17824f4e7142254d1c43a1d5d47025 (diff) | |
download | qsort-master.tar.gz qsort-master.tar.bz2 qsort-master.zip |
Diffstat (limited to 'mqsort.h')
-rw-r--r-- | mqsort.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mqsort.h b/mqsort.h new file mode 100644 index 0000000..ef9d3be --- /dev/null +++ b/mqsort.h @@ -0,0 +1,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 |