~ubuntu-branches/ubuntu/saucy/clamav/saucy-backports

« back to all changes in this revision

Viewing changes to libclamav/7z/Delta.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2014-07-15 01:08:10 UTC
  • mfrom: (0.35.47 sid)
  • Revision ID: package-import@ubuntu.com-20140715010810-ru66ek4fun2iseba
Tags: 0.98.4+dfsg-2~ubuntu13.10.1
No-change backport to saucy (LP: #1341962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Delta.h -- Delta converter
2
 
2009-04-15 : Igor Pavlov : Public domain */
3
 
 
4
 
#ifndef __DELTA_H
5
 
#define __DELTA_H
6
 
 
7
 
#include "Types.h"
8
 
 
9
 
#ifdef __cplusplus
10
 
extern "C" {
11
 
#endif
12
 
 
13
 
#define DELTA_STATE_SIZE 256
14
 
 
15
 
void Delta_Init(Byte *state);
16
 
void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
17
 
void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
18
 
 
19
 
#ifdef __cplusplus
20
 
}
21
 
#endif
22
 
 
23
 
#endif
 
1
/* Delta.h -- Delta converter
 
2
2009-04-15 : Igor Pavlov : Public domain */
 
3
 
 
4
#ifndef __DELTA_H
 
5
#define __DELTA_H
 
6
 
 
7
#include "Types.h"
 
8
 
 
9
#ifdef __cplusplus
 
10
extern "C" {
 
11
#endif
 
12
 
 
13
#define DELTA_STATE_SIZE 256
 
14
 
 
15
void Delta_Init(Byte *state);
 
16
void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
 
17
void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
 
18
 
 
19
#ifdef __cplusplus
 
20
}
 
21
#endif
 
22
 
 
23
#endif