7zip/C/Sort.h

19 lines
325 B
C
Raw Normal View History

2021-12-27 01:00:00 +01:00
/* Sort.h -- Sort functions
2023-06-21 02:00:00 +02:00
2023-03-05 : Igor Pavlov : Public domain */
2021-12-27 01:00:00 +01:00
2023-06-21 02:00:00 +02:00
#ifndef ZIP7_INC_SORT_H
#define ZIP7_INC_SORT_H
2021-12-27 01:00:00 +01:00
#include "7zTypes.h"
EXTERN_C_BEGIN
void HeapSort(UInt32 *p, size_t size);
void HeapSort64(UInt64 *p, size_t size);
/* void HeapSortRef(UInt32 *p, UInt32 *vals, size_t size); */
EXTERN_C_END
#endif