mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
4497d7fdaa
As a bonus, add support for XZ-compressed files in ZIP
18 lines
325 B
C
18 lines
325 B
C
/* Sort.h -- Sort functions
|
|
2023-03-05 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef ZIP7_INC_SORT_H
|
|
#define ZIP7_INC_SORT_H
|
|
|
|
#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
|