README.examples
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. This directory contains examples of the use of zlib.
  2. fitblk.c
  3.     compress just enough input to nearly fill a requested output size
  4.     - zlib isn't designed to do this, but fitblk does it anyway
  5. gun.c
  6.     uncompress a gzip file
  7.     - illustrates the use of inflateBack() for high speed file-to-file
  8.       decompression using call-back functions
  9.     - is approximately twice as fast as gzip -d
  10.     - also provides Unix uncompress functionality, again twice as fast
  11. gzappend.c
  12.     append to a gzip file
  13.     - illustrates the use of the Z_BLOCK flush parameter for inflate()
  14.     - illustrates the use of deflatePrime() to start at any bit
  15. gzjoin.c
  16.     join gzip files without recalculating the crc or recompressing
  17.     - illustrates the use of the Z_BLOCK flush parameter for inflate()
  18.     - illustrates the use of crc32_combine()
  19. gzlog.c
  20. gzlog.h
  21.     efficiently maintain a message log file in gzip format
  22.     - illustrates use of raw deflate and Z_SYNC_FLUSH
  23.     - illustrates use of gzip header extra field
  24. zlib_how.html
  25.     painfully comprehensive description of zpipe.c (see below)
  26.     - describes in excruciating detail the use of deflate() and inflate()
  27. zpipe.c
  28.     reads and writes zlib streams from stdin to stdout
  29.     - illustrates the proper use of deflate() and inflate()
  30.     - deeply commented in zlib_how.html (see above)
  31. zran.c
  32.     index a zlib or gzip stream and randomly access it
  33.     - illustrates the use of Z_BLOCK, inflatePrime(), and
  34.       inflateSetDictionary() to provide random access