diff options
author | 2012-02-12 17:55:51 +0000 | |
---|---|---|
committer | 2012-02-12 17:55:51 +0000 | |
commit | d75dbab0de7da33196f08f0cf7992d906ffbb832 (patch) | |
tree | d9120844b308fa2ac9844c182a86b79feddb84f3 /src/lib/lib7z/Sort.h | |
parent | f594641814167d5de00ee2a0d6925c42e61fecc4 (diff) |
Add LZMA codec and .7z container support [David Haywood, R. Belmont]
Diffstat (limited to 'src/lib/lib7z/Sort.h')
-rw-r--r-- | src/lib/lib7z/Sort.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/lib/lib7z/Sort.h b/src/lib/lib7z/Sort.h new file mode 100644 index 00000000000..65dfc6f6a6f --- /dev/null +++ b/src/lib/lib7z/Sort.h @@ -0,0 +1,20 @@ +/* Sort.h -- Sort functions +2009-02-07 : Igor Pavlov : Public domain */ + +#ifndef __7Z_SORT_H +#define __7Z_SORT_H + +#include "Types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +void HeapSort(UInt32 *p, UInt32 size); +/* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */ + +#ifdef __cplusplus +} +#endif + +#endif |