ref: 79c6aab927e4b7c6a1ba4fbf90b96d42f3762705
dir: /whack.h/
enum
{
WhackStats = 8,
WhackMaxOff = 16*1024, /* max allowed offset */
HashLog = 14,
HashSize = 1<<HashLog,
HashMask = HashSize - 1,
MinMatch = 3, /* shortest match possible */
MinDecode = 8, /* minimum bits to decode a match or lit; >= 8 */
MaxSeqMask = 8, /* number of bits in coding block mask */
MaxSeqStart = 256 /* max offset of initial coding block */
};
int unwhack(uchar *dst, u16int dsize, uchar *src, u16int ssize);