summaryrefslogtreecommitdiff
path: root/huffman.h (unfollow)
Commit message (Collapse)Author
2017-05-13Factor LZ77 and Huffman routines out of deflate.c.Simon Tatham
The general routines for analysing a buffer into an LZ77ish stream of literals and matches, and for constructing a Huffman tree in canonical format, now live in their own source files so that they can be reused for other similar compression formats. Deflate-specific details like the exact file encoding are left in deflate.c.