aboutsummaryrefslogtreecommitdiff
path: root/deps/lzma-16.04/C/Sort.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/lzma-16.04/C/Sort.h')
-rw-r--r--deps/lzma-16.04/C/Sort.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/deps/lzma-16.04/C/Sort.h b/deps/lzma-16.04/C/Sort.h
new file mode 100644
index 0000000..7209d78
--- /dev/null
+++ b/deps/lzma-16.04/C/Sort.h
@@ -0,0 +1,18 @@
+/* Sort.h -- Sort functions
+2014-04-05 : Igor Pavlov : Public domain */
+
+#ifndef __7Z_SORT_H
+#define __7Z_SORT_H
+
+#include "7zTypes.h"
+
+EXTERN_C_BEGIN
+
+void HeapSort(UInt32 *p, size_t size);
+void HeapSort64(UInt64 *p, size_t size);
+
+/* void HeapSortRef(UInt32 *p, UInt32 *vals, size_t size); */
+
+EXTERN_C_END
+
+#endif