Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Sort.h « C - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/C/Sort.h
blob: 65dfc6f6a6fb8c46855b4b175f99ce21b07ab70d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Sort.h -- Sort functions
2009-02-07 : Igor Pavlov : Public domain */

#ifndef __7Z_SORT_H
#define __7Z_SORT_H

#include "Types.h"

#ifdef __cplusplus
extern "C" {
#endif

void HeapSort(UInt32 *p, UInt32 size);
/* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */

#ifdef __cplusplus
}
#endif

#endif