Imported Upstream version 9.20
[platform/upstream/7zip.git] / C / Sort.h
1 /* Sort.h -- Sort functions\r
2 2009-02-07 : Igor Pavlov : Public domain */\r
3 \r
4 #ifndef __7Z_SORT_H\r
5 #define __7Z_SORT_H\r
6 \r
7 #include "Types.h"\r
8 \r
9 #ifdef __cplusplus\r
10 extern "C" {\r
11 #endif\r
12 \r
13 void HeapSort(UInt32 *p, UInt32 size);\r
14 /* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */\r
15 \r
16 #ifdef __cplusplus\r
17 }\r
18 #endif\r
19 \r
20 #endif\r