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.

INDEX 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ChangeLog history of changes
  2. INDEX this file
  3. FAQ Frequently Asked Questions about zlib
  4. Make_vms.com script for Vax/VMS
  5. Makefile makefile for Unix (generated by configure)
  6. Makefile.in makefile for Unix (template for configure)
  7. Makefile.riscos makefile for RISCOS
  8. README guess what
  9. algorithm.txt description of the (de)compression algorithm
  10. configure configure script for Unix
  11. descrip.mms makefile for Vax/VMS
  12. zlib.3 mini man page for zlib (volunteers to write full
  13. man pages from zlib.h welcome. write to jloup@gzip.org)
  14. amiga/Makefile.sas makefile for Amiga SAS/C
  15. amiga/Makefile.pup makefile for Amiga powerUP SAS/C PPC
  16. msdos/Makefile.w32 makefile for Microsoft Visual C++ 32-bit
  17. msdos/Makefile.b32 makefile for Borland C++ 32-bit
  18. msdos/Makefile.bor makefile for Borland C/C++ 16-bit
  19. msdos/Makefile.dj2 makefile for DJGPP 2.x
  20. msdos/Makefile.emx makefile for EMX 0.9c (32-bit DOS/OS2)
  21. msdos/Makefile.msc makefile for Microsoft C 16-bit
  22. msdos/Makefile.tc makefile for Turbo C
  23. msdos/Makefile.wat makefile for Watcom C
  24. msdos/zlib.def definition file for Windows DLL
  25. msdos/zlib.rc definition file for Windows DLL
  26. nt/Makefile.nt makefile for Windows NT
  27. nt/zlib.dnt definition file for Windows NT DLL
  28. nt/Makefile.emx makefile for EMX 0.9c/RSXNT 1.41 (Win32 Intel)
  29. nt/Makefile.gcc makefile for Windows NT using GCC (mingw32)
  30. zlib public header files (must be kept):
  31. zconf.h
  32. zlib.h
  33. private source files used to build the zlib library:
  34. adler32.c
  35. compress.c
  36. crc32.c
  37. deflate.c
  38. deflate.h
  39. gzio.c
  40. infblock.c
  41. infblock.h
  42. infcodes.c
  43. infcodes.h
  44. inffast.c
  45. inffast.h
  46. inflate.c
  47. inftrees.c
  48. inftrees.h
  49. infutil.c
  50. infutil.h
  51. maketree.c
  52. trees.c
  53. uncompr.c
  54. zutil.c
  55. zutil.h
  56. source files for sample programs:
  57. example.c
  58. minigzip.c
  59. unsupported contribution by third parties
  60. contrib/asm386/ by Gilles Vollant <info@winimage.com>
  61. 386 asm code replacing longest_match().
  62. contrib/minizip/ by Gilles Vollant <info@winimage.com>
  63. Mini zip and unzip based on zlib
  64. See http://www.winimage.com/zLibDll/unzip.html
  65. contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu>
  66. A C++ I/O streams interface to the zlib gz* functions
  67. contrib/iostream2/ by Tyge Løvset <Tyge.Lovset@cmr.no>
  68. Another C++ I/O streams interface
  69. contrib/untgz/ by "Pedro A. Aranda Guti\irrez" <paag@tid.es>
  70. A very simple tar.gz extractor using zlib
  71. contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl>
  72. How to use compress(), uncompress() and the gz* functions from VB.