comparison src/win32/7zip/7z/C/Sort.h @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
comparison
equal deleted inserted replaced
0:8ced16adf2e1 1:f9f4f1b99eed
1 /* Sort.h -- Sort functions
2 2008-03-19
3 Igor Pavlov
4 Public domain */
5
6 #ifndef __7Z_SORT_H
7 #define __7Z_SORT_H
8
9 #include "Types.h"
10
11 void HeapSort(UInt32 *p, UInt32 size);
12 /* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */
13
14 #endif