Where can I find an example of an unzipper using zlib?

I'm looking for a simple example C application to decompress a zip file using zlib. It should support a fairly new version of .zip and should have source code right down to the zlib calls.

0


source to share


2 answers


In the original zlib-bin package on my system (linux), there are several sample programs called "minizip" and "miniunzip" that do just that.



+4


source


The zpipe.c example on the zlib.net website is pretty straight forward. There is also a pretty good description of what it does.



0


source







All Articles