You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
317 B
19 lines
317 B
5 years ago
|
/* Sort.h -- Sort functions
|
||
|
2014-04-05 : Igor Pavlov : Public domain */
|
||
|
|
||
|
#ifndef __7Z_SORT_H
|
||
|
#define __7Z_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
|