You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB

  1. UnZip 0.15 additionnal library
  2. This unzip package allow extract file from .ZIP file, compatible with
  3. PKZip 2.04g, WinZip, InfoZip tools and compatible.
  4. Multi volume ZipFile (span) are not supported, and old compression used by old
  5. PKZip 1.x are not supported.
  6. See probdesc.zip from PKWare for specification of .ZIP format.
  7. What is Unzip
  8. The Zlib library support the deflate compression and the creation of gzip (.gz)
  9. file. Zlib is free and small.
  10. The .Zip format, which can contain several compressed files (.gz can containt
  11. only one file) is a very popular format. This is why I've written a package for reading file compressed in Zipfile.
  12. Using Unzip package
  13. You need source of Zlib (get zlib111.zip and read zlib.h).
  14. Get unzlb015.zip and read unzip.h (whith documentation of unzip functions)
  15. The Unzip package is only two file : unzip.h and unzip.c. But it use the Zlib
  16. files.
  17. unztst.c is a simple sample program, which list file in a zipfile and display
  18. README.TXT or FILE_ID.DIZ (if these files are found).
  19. miniunz.c is a mini unzip program.
  20. I'm also currenlyt writing a zipping portion (zip.h, zip.c and test with minizip.c)
  21. Please email me for feedback.
  22. I hope my source is compatible with Unix system, but I need your help for be sure
  23. Latest revision : Mar 04th, 1998
  24. Check http://www.winimage.com/zLibDll/unzip.html for up to date info.