mirror of
https://github.com/sealmove/LZ77
synced 2026-01-09 07:21:11 +00:00
No description
| src | ||
| LICENSE | ||
| lz77.nimble | ||
| README.md | ||
Implementation of LZ77 algorithms
Motivation
This project was motivated by the attempt to write an os-agnostic parser for Windows Prefetch files.
Most parsers use the Windows API to decompress MAM data, which means they only work on Windows 8.1 & 10.
Generality of implementation
I will try to make the implementation as general as possible, but for now I follow Microsoft's conventions.