mirror of
https://github.com/openharmony/third_party_lzma.git
synced 2026-07-01 22:34:02 -04:00
10e0f1fc8a
Signed-off-by: chenshi51 <chenshi51@huawei.com> Change-Id: I2a1f03b523c2b849043c84c28b67d45a404aefbf
16 lines
237 B
C
16 lines
237 B
C
/* Sort.h -- Sort functions
|
|
: Igor Pavlov : Public domain */
|
|
|
|
#ifndef ZIP7_INC_SORT_H
|
|
#define ZIP7_INC_SORT_H
|
|
|
|
#include "7zTypes.h"
|
|
|
|
EXTERN_C_BEGIN
|
|
|
|
void Z7_FASTCALL HeapSort(UInt32 *p, size_t size);
|
|
|
|
EXTERN_C_END
|
|
|
|
#endif
|