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: 896243c1d4c0575fe361c7ed3cc5e40301f36611 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Sort.h */

#ifndef __7Z_Sort_H
#define __7Z_Sort_H

#include "Types.h"

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

#endif