summaryrefslogtreecommitdiff
path: root/lz77.c (follow)
Commit message (Collapse)AuthorAge
* Factor LZ77 and Huffman routines out of deflate.c.Simon Tatham2017-05-13
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.