Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
Delta.h
Go to the documentation of this file.
1/* Delta.h -- Delta converter
22023-03-03 : Igor Pavlov : Public domain */
3
4#ifndef ZIP7_INC_DELTA_H
5#define ZIP7_INC_DELTA_H
6
7#include "7zTypes.h"
8
10
11#define DELTA_STATE_SIZE 256
12
13void Delta_Init(Byte *state);
14void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
15void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
16
18
19#endif
size_t SizeT
Definition 7zTypes.h:247
#define EXTERN_C_BEGIN
Definition 7zTypes.h:20
#define EXTERN_C_END
Definition 7zTypes.h:21
Definition poolTests.c:28
size_t size
Definition platform.h:559
unsigned char Byte
Definition zconf.h:391
void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size)
Definition Delta.c:16
void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size)
Definition Delta.c:89
void Delta_Init(Byte *state)
Definition Delta.c:8