dep: Add lzma 19.00

This commit is contained in:
Connor McLaughlin
2020-01-30 15:47:11 +10:00
parent 0b7abf244e
commit 13e1fa055b
34 changed files with 9346 additions and 0 deletions

18
dep/lzma/include/Sort.h Normal file
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