X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Flizard.h;h=616d17b0c07e104f149ffff14f0774d2044c458b;hb=da2f99caf76902aacb06fd389994ac79182a92da;hp=be8a061813ad5130b47b4c1798d62f96abbab43d;hpb=df10a782020fca22b3ee4c6e49980f68233cc6d1;p=libucw.git diff --git a/lib/lizard.h b/lib/lizard.h index be8a0618..616d17b0 100644 --- a/lib/lizard.h +++ b/lib/lizard.h @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_LIZARD_H -#define _SHERLOCK_LIZARD_H +#ifndef _UCW_LIZARD_H +#define _UCW_LIZARD_H #define LIZARD_NEEDS_CHARS 8 /* The compression routine needs input buffer 8 characters longer, because it @@ -27,33 +27,23 @@ */ /* lizard.c */ -int lizard_compress(byte *in, uns in_len, byte *out); -int lizard_decompress(byte *in, byte *out); +int lizard_compress(const byte *in, uns in_len, byte *out); +int lizard_decompress(const byte *in, byte *out); /* lizard-safe.c */ struct lizard_buffer; struct lizard_buffer *lizard_alloc(void); void lizard_free(struct lizard_buffer *buf); -byte *lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_length); +byte *lizard_decompress_safe(const byte *in, struct lizard_buffer *buf, uns expected_length); /* adler32.c */ -uns update_adler32(uns adler, byte *ptr, uns len); +uns update_adler32(uns adler, const byte *ptr, uns len); static inline uns -adler32(byte *buf, uns len) +adler32(const byte *buf, uns len) { return update_adler32(1, buf, len); } -/* lizard-fb.c */ -struct fastbuf; - -void lizard_set_type(uns type, float min_compr); -int lizard_bwrite(struct fastbuf *fb_out, byte *ptr_in, uns len_in); -int lizard_bbcopy_compress(struct fastbuf *fb_out, struct fastbuf *fb_in, uns len_in); -int lizard_memread(struct lizard_buffer *liz_buf, byte *ptr_in, byte **ptr_out, uns *type); -int lizard_bread(struct lizard_buffer *liz_buf, struct fastbuf *fb_in, byte **ptr_out, uns *type); - /* These functions use static variables, hence they are not re-entrant. */ - #endif