Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
Sort.h
Go to the documentation of this file.
1/* Sort.h -- Sort functions
22023-03-05 : Igor Pavlov : Public domain */
3
4#ifndef ZIP7_INC_SORT_H
5#define ZIP7_INC_SORT_H
6
7#include "7zTypes.h"
8
10
11void HeapSort(UInt32 *p, size_t size);
12void HeapSort64(UInt64 *p, size_t size);
13
14/* void HeapSortRef(UInt32 *p, UInt32 *vals, size_t size); */
15
17
18#endif
#define EXTERN_C_BEGIN
Definition 7zTypes.h:20
unsigned long long int UInt64
Definition 7zTypes.h:234
#define EXTERN_C_END
Definition 7zTypes.h:21
EXTERN_C_BEGIN void HeapSort(UInt32 *p, size_t size)
Definition Sort.c:17
void HeapSort64(UInt64 *p, size_t size)
Definition Sort.c:63
size_t size
Definition platform.h:559
unsigned int UInt32
Definition bzlib_private.h:45