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

19
dep/lzma/include/Delta.h Normal file
View File

@ -0,0 +1,19 @@
/* Delta.h -- Delta converter
2013-01-18 : Igor Pavlov : Public domain */
#ifndef __DELTA_H
#define __DELTA_H
#include "7zTypes.h"
EXTERN_C_BEGIN
#define DELTA_STATE_SIZE 256
void Delta_Init(Byte *state);
void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
EXTERN_C_END
#endif