BCS
BCS

Reputation: 78595

Where can I find an example unzipper using zlib?

I'm looking for a bare bones simple example C app for unpacking a zip file using zlib. It must support fairly new version of .zip and must have source right down to the zlib calls.

Upvotes: 1

Views: 5825

Answers (2)

JayG
JayG

Reputation: 4459

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

Upvotes: 1

joveha
joveha

Reputation: 2689

The zlib-bin source package on my system (linux) has some example programs called "minizip" and "miniunzip" which shows just that.

Upvotes: 5

Related Questions