ref: b19e5132e043949c276cd7ee8742eed5994e86b2
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);