]> mj.ucw.cz Git - libucw.git/blobdiff - lib/lizard.h
added adler32 functions
[libucw.git] / lib / lizard.h
index f81ea5f40777b3643021614119399a090074b98f..838d683f7849f30de68f797a467a676fc491f672 100644 (file)
@@ -7,6 +7,9 @@
  *     of the GNU Lesser General Public License.
  */
 
+#ifndef _SHERLOCK_LIZARD_H
+#define _SHERLOCK_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.  */
@@ -33,3 +36,8 @@ 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);
+
+uns update_adler32(uns adler, byte *ptr, uns len);
+uns adler32(byte *ptr, uns len);
+
+#endif