X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Flizard.h;h=aa616515b21ad0d418a1d66de3015b5b104d346e;hb=62eda8640605c19ecd817e274e75717022349732;hp=c701e6f2bcb589d2ecfa4fdaab86f1ebd988f976;hpb=0d56b467cc2184f00a4e390f95596704d819dfa3;p=libucw.git diff --git a/lib/lizard.h b/lib/lizard.h index c701e6f2..aa616515 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 @@ -39,6 +39,11 @@ byte *lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_l /* 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