]> mj.ucw.cz Git - libucw.git/blobdiff - lib/lizard.h
Try to merge recent changes in v3.9 to image branch...
[libucw.git] / lib / lizard.h
index 838d683f7849f30de68f797a467a676fc491f672..aa616515b21ad0d418a1d66de3015b5b104d346e 100644 (file)
@@ -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
@@ -37,7 +37,13 @@ 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);
 
+/* adler32.c */
 uns update_adler32(uns adler, byte *ptr, uns len);
-uns adler32(byte *ptr, uns len);
+
+static inline uns
+adler32(byte *buf, uns len)
+{
+  return update_adler32(1, buf, len);
+}
 
 #endif