|
|
|
|
|
by WoodenChair
1664 days ago
|
|
Programming a gzip (deflate) decompressor is a really good learning project. I did it last year, ultimately producing a pretty poor but working implementation [0]. I ended up modifying Mark Adler's puff example program to see the intermediary tables it produces to help debug my own implementation. I wish I had known about infgen (also by Adler). The other resource I would recommend, beyond the official specs is this article by Joshua Davies[1], also mentioned in the original post here. [0]: https://github.com/davecom/nflate
[1]: https://commandlinefanatic.com/cgi-bin/showarticle.cgi?artic... |
|