X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Flizard.h;h=aa616515b21ad0d418a1d66de3015b5b104d346e;hb=86919305a08aa88b3a60c3216752291ba7f0b496;hp=52ddf8b397d9eeeb191b33504b15ad8a8c779151;hpb=d2e57005add34e6ed878fb9051b3a05e4375f0d1;p=libucw.git diff --git a/lib/lizard.h b/lib/lizard.h index 52ddf8b3..aa616515 100644 --- a/lib/lizard.h +++ b/lib/lizard.h @@ -7,6 +7,9 @@ * of the GNU Lesser General Public License. */ +#ifndef _UCW_LIZARD_H +#define _UCW_LIZARD_H + #define LIZARD_NEEDS_CHARS 8 /* The compression routine needs input buffer 8 characters longer, because it * does not check the input bounds all the time. */ @@ -20,7 +23,7 @@ * The multiplicative constant comes from 19-byte incompressible string * followed by a 3-sequence that can be compressed into 2-byte link. This * breaks the copy-mode and it needs to be restarted with a new header. The - * total length is 2(header) + 2(link) + 19(string) = 23. + * total length is 2(header) + 19(string) + 2(link) = 23. */ /* lizard.c */ @@ -28,11 +31,19 @@ int lizard_compress(byte *in, uns in_len, byte *out); int lizard_decompress(byte *in, byte *out); /* lizard-safe.c */ -struct lizard_buffer { - uns len; - void *ptr; -}; +struct lizard_buffer; -struct lizard_buffer *lizard_alloc(uns max_len); +struct lizard_buffer *lizard_alloc(void); void lizard_free(struct lizard_buffer *buf); -int lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_length); +byte *lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_length); + +/* adler32.c */ +uns update_adler32(uns adler, byte *ptr, uns len); + +static inline uns +adler32(byte *buf, uns len) +{ + return update_adler32(1, buf, len); +} + +#endif