view 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
line wrap: on
line source
1 /* Sort.h -- Sort functions
2 2008-03-19
3 Igor Pavlov
4 Public domain */
6 #ifndef __7Z_SORT_H
7 #define __7Z_SORT_H
9 #include "Types.h"
11 void HeapSort(UInt32 *p, UInt32 size);
12 /* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */
14 #endif