]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/lizard.h
Install the build system
[libucw.git] / ucw / lizard.h
index 616d17b0c07e104f149ffff14f0774d2044c458b..547f181dc2af3fc813f7d1ebdf3bb8b3109b39aa 100644 (file)
@@ -38,12 +38,12 @@ void lizard_free(struct lizard_buffer *buf);
 byte *lizard_decompress_safe(const byte *in, struct lizard_buffer *buf, uns expected_length);
 
 /* adler32.c */
-uns update_adler32(uns adler, const byte *ptr, uns len);
+uns adler32_update(uns adler, const byte *ptr, uns len);
 
 static inline uns
 adler32(const byte *buf, uns len)
 {
-  return update_adler32(1, buf, len);
+  return adler32_update(1, buf, len);
 }
 
 #endif