Bug 1941128 - Turn off network.dns.native_https_query on Mac again
[gecko.git] / other-licenses / 7zstub / src / C / Delta.h
blobe59d5a252b02bbafab2072ac126ed3645ca3da6a
1 /* Delta.h -- Delta converter
2 2013-01-18 : Igor Pavlov : Public domain */
4 #ifndef __DELTA_H
5 #define __DELTA_H
7 #include "7zTypes.h"
9 EXTERN_C_BEGIN
11 #define DELTA_STATE_SIZE 256
13 void Delta_Init(Byte *state);
14 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
15 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
17 EXTERN_C_END
19 #endif