source: rtems/cpukit/zlib/examples/README.examples @ e7fc2fd

4.115
Last change on this file since e7fc2fd was 959f7df2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/28/05 at 07:22:42

Import of zlib-1.2.2.2.tar.gz

  • Property mode set to 100644
File size: 1018 bytes
Line 
1This directory contains examples of the use of zlib.
2
3fitblk.c
4    compress just enough input to nearly fill a requested output size
5    - zlib isn't designed to do this, but fitblk does it anyway
6
7gzappend.c
8    append to a gzip file
9    - illustrates the use of the Z_BLOCK flush parameter for inflate()
10    - illustrates the use of deflatePrime() to start at any bit
11
12gzjoin.c
13    join gzip files without recalculating the crc or recompressing
14    - illustrates the use of the Z_BLOCK flush parameter for inflate()
15    - illustrates the use of crc32_combine()
16
17gzlog.c
18gzlog.h
19    efficiently maintain a message log file in gzip format
20    - illustrates use of raw deflate and Z_SYNC_FLUSH
21    - illustrates use of gzip header extra field
22
23zlib_how.html
24    painfully comprehensive description of zpipe.c (see below)
25    - describes in excruciating detail the use of deflate() and inflate()
26
27zpipe.c
28    reads and writes zlib streams from stdin to stdout
29    - illustrates the proper use of deflate() and inflate()
Note: See TracBrowser for help on using the repository browser.