1370b324cSopenharmony_ci/* Sort.h -- Sort functions 2370b324cSopenharmony_ci2023-03-05 : Igor Pavlov : Public domain */ 3370b324cSopenharmony_ci 4370b324cSopenharmony_ci#ifndef ZIP7_INC_SORT_H 5370b324cSopenharmony_ci#define ZIP7_INC_SORT_H 6370b324cSopenharmony_ci 7370b324cSopenharmony_ci#include "7zTypes.h" 8370b324cSopenharmony_ci 9370b324cSopenharmony_ciEXTERN_C_BEGIN 10370b324cSopenharmony_ci 11370b324cSopenharmony_civoid HeapSort(UInt32 *p, size_t size); 12370b324cSopenharmony_civoid HeapSort64(UInt64 *p, size_t size); 13370b324cSopenharmony_ci 14370b324cSopenharmony_ci/* void HeapSortRef(UInt32 *p, UInt32 *vals, size_t size); */ 15370b324cSopenharmony_ci 16370b324cSopenharmony_ciEXTERN_C_END 17370b324cSopenharmony_ci 18370b324cSopenharmony_ci#endif 19