39 int wc_Compress(
byte* out, word32 outSz,
const byte* in, word32 inSz, word32 flags);
72 int wc_DeCompress(
byte* out, word32 outSz,
const byte* in, word32 inSz);
int wc_DeCompress(byte *out, word32 outSz, const byte *in, word32 inSz)
This function decompresses the given compressed data using Huffman coding and stores the output in ou...
int wc_Compress(byte *out, word32 outSz, const byte *in, word32 inSz, word32 flags)
This function compresses the given input data using Huffman coding and stores the output in out....