mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 23:14:54 -06:00
15 lines
239 B
C
Executable File
15 lines
239 B
C
Executable File
/* Sort.h -- Sort functions
|
|
2008-03-19
|
|
Igor Pavlov
|
|
Public domain */
|
|
|
|
#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
|