mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 17:15:00 -06:00
12 lines
184 B
C
Executable File
12 lines
184 B
C
Executable File
/* Sort.h */
|
|
|
|
#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
|