Adds 7z sdk to 3rdparty

This commit is contained in:
RipleyTom
2019-09-13 23:02:10 +02:00
committed by Megamouse
parent f7ebc55326
commit 56e6dd1c46
84 changed files with 26078 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
/* 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