7zip/C/Delta.h

20 lines
390 B
C
Raw Permalink Normal View History

2021-12-27 01:00:00 +01:00
/* Delta.h -- Delta converter
2023-06-21 02:00:00 +02:00
2023-03-03 : Igor Pavlov : Public domain */
2021-12-27 01:00:00 +01:00
2023-06-21 02:00:00 +02:00
#ifndef ZIP7_INC_DELTA_H
#define ZIP7_INC_DELTA_H
2021-12-27 01:00:00 +01:00
#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