Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/C/Sort.h
diff options
context:
space:
mode:
Diffstat (limited to 'C/Sort.h')
-rwxr-xr-xC/Sort.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/C/Sort.h b/C/Sort.h
new file mode 100755
index 00000000..896243c1
--- /dev/null
+++ b/C/Sort.h
@@ -0,0 +1,11 @@
+/* Sort.h */
+
+#ifndef __7Z_Sort_H
+#define __7Z_Sort_H
+
+#include "Types.h"
+
+void HeapSort(UInt32 *p, UInt32 size);
+/* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */
+
+#endif