genlz77: Update API to uzlib_ prefix.

This commit is contained in:
Paul Sokolovsky 2016-08-15 00:10:19 +03:00
parent 6e9f13e9d9
commit 9dd4fe3a9b
3 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
* tgzip - gzip compressor example
*
* Copyright (c) 2003 by Joergen Ibsen / Jibz
* Copyright (c) 2014 by Paul Sokolovsky
* Copyright (c) 2014-2016 by Paul Sokolovsky
*
* http://www.ibsensoftware.com/
*
@ -86,7 +86,7 @@ int main(int argc, char *argv[])
struct Outbuf out = {0};
zlib_start_block(&out);
tinf_compress(&out, source, len);
uzlib_compress(&out, source, len);
zlib_finish_block(&out);
printf("compressed to %u raw bytes\n", out.outlen);
@ -104,7 +104,7 @@ int main(int argc, char *argv[])
fwrite(out.outbuf, 1, out.outlen, fout);
unsigned crc = tinf_crc32(source, len);
unsigned crc = ~uzlib_crc32(source, len, ~0);
fwrite(&crc, sizeof(crc), 1, fout);
fwrite(&len, sizeof(len), 1, fout);

View file

@ -85,7 +85,7 @@ static inline void copy(void *data, unsigned offset, unsigned len)
#endif
void tinf_compress(void *data, const uint8_t *src, unsigned slen)
void uzlib_compress(void *data, const uint8_t *src, unsigned slen)
{
const uint8_t *hashtable[HASH_SIZE] = {0};

View file

@ -100,7 +100,7 @@ int TINFCC uzlib_gzip_parse_header(TINF_DATA *d);
/* Compression API */
void TINFCC tinf_compress(void *data, const uint8_t *src, unsigned slen);
void TINFCC uzlib_compress(void *data, const uint8_t *src, unsigned slen);
/* Checksum API */