OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [zlib/] [zlib.3] - Diff between revs 745 and 783

Only display areas with differences | Details | Blame | View Log

Rev 745 Rev 783
.TH ZLIB 3 "18 July 2005"
.TH ZLIB 3 "18 July 2005"
.SH NAME
.SH NAME
zlib \- compression/decompression library
zlib \- compression/decompression library
.SH SYNOPSIS
.SH SYNOPSIS
[see
[see
.I zlib.h
.I zlib.h
for full description]
for full description]
.SH DESCRIPTION
.SH DESCRIPTION
The
The
.I zlib
.I zlib
library is a general purpose data compression library.
library is a general purpose data compression library.
The code is thread safe.
The code is thread safe.
It provides in-memory compression and decompression functions,
It provides in-memory compression and decompression functions,
including integrity checks of the uncompressed data.
including integrity checks of the uncompressed data.
This version of the library supports only one compression method (deflation)
This version of the library supports only one compression method (deflation)
but other algorithms will be added later
but other algorithms will be added later
and will have the same stream interface.
and will have the same stream interface.
.LP
.LP
Compression can be done in a single step if the buffers are large enough
Compression can be done in a single step if the buffers are large enough
(for example if an input file is mmap'ed),
(for example if an input file is mmap'ed),
or can be done by repeated calls of the compression function.
or can be done by repeated calls of the compression function.
In the latter case,
In the latter case,
the application must provide more input and/or consume the output
the application must provide more input and/or consume the output
(providing more output space) before each call.
(providing more output space) before each call.
.LP
.LP
The library also supports reading and writing files in
The library also supports reading and writing files in
.IR gzip (1)
.IR gzip (1)
(.gz) format
(.gz) format
with an interface similar to that of stdio.
with an interface similar to that of stdio.
.LP
.LP
The library does not install any signal handler.
The library does not install any signal handler.
The decoder checks the consistency of the compressed data,
The decoder checks the consistency of the compressed data,
so the library should never crash even in case of corrupted input.
so the library should never crash even in case of corrupted input.
.LP
.LP
All functions of the compression library are documented in the file
All functions of the compression library are documented in the file
.IR zlib.h .
.IR zlib.h .
The distribution source includes examples of use of the library
The distribution source includes examples of use of the library
in the files
in the files
.I example.c
.I example.c
and
and
.IR minigzip.c .
.IR minigzip.c .
.LP
.LP
Changes to this version are documented in the file
Changes to this version are documented in the file
.I ChangeLog
.I ChangeLog
that accompanies the source,
that accompanies the source,
and are concerned primarily with bug fixes and portability enhancements.
and are concerned primarily with bug fixes and portability enhancements.
.LP
.LP
A Java implementation of
A Java implementation of
.I zlib
.I zlib
is available in the Java Development Kit 1.1:
is available in the Java Development Kit 1.1:
.IP
.IP
http://www.javasoft.com/products/JDK/1.1/docs/api/Package-java.util.zip.html
http://www.javasoft.com/products/JDK/1.1/docs/api/Package-java.util.zip.html
.LP
.LP
A Perl interface to
A Perl interface to
.IR zlib ,
.IR zlib ,
written by Paul Marquess (pmqs@cpan.org),
written by Paul Marquess (pmqs@cpan.org),
is available at CPAN (Comprehensive Perl Archive Network) sites,
is available at CPAN (Comprehensive Perl Archive Network) sites,
including:
including:
.IP
.IP
http://www.cpan.org/modules/by-module/Compress/
http://www.cpan.org/modules/by-module/Compress/
.LP
.LP
A Python interface to
A Python interface to
.IR zlib ,
.IR zlib ,
written by A.M. Kuchling (amk@magnet.com),
written by A.M. Kuchling (amk@magnet.com),
is available in Python 1.5 and later versions:
is available in Python 1.5 and later versions:
.IP
.IP
http://www.python.org/doc/lib/module-zlib.html
http://www.python.org/doc/lib/module-zlib.html
.LP
.LP
A
A
.I zlib
.I zlib
binding for
binding for
.IR tcl (1),
.IR tcl (1),
written by Andreas Kupries (a.kupries@westend.com),
written by Andreas Kupries (a.kupries@westend.com),
is availlable at:
is availlable at:
.IP
.IP
http://www.westend.com/~kupries/doc/trf/man/man.html
http://www.westend.com/~kupries/doc/trf/man/man.html
.LP
.LP
An experimental package to read and write files in .zip format,
An experimental package to read and write files in .zip format,
written on top of
written on top of
.I zlib
.I zlib
by Gilles Vollant (info@winimage.com),
by Gilles Vollant (info@winimage.com),
is available at:
is available at:
.IP
.IP
http://www.winimage.com/zLibDll/unzip.html
http://www.winimage.com/zLibDll/unzip.html
and also in the
and also in the
.I contrib/minizip
.I contrib/minizip
directory of the main
directory of the main
.I zlib
.I zlib
web site.
web site.
.SH "SEE ALSO"
.SH "SEE ALSO"
The
The
.I zlib
.I zlib
web site can be found at either of these locations:
web site can be found at either of these locations:
.IP
.IP
http://www.zlib.org
http://www.zlib.org
.br
.br
http://www.gzip.org/zlib/
http://www.gzip.org/zlib/
.LP
.LP
The data format used by the zlib library is described by RFC
The data format used by the zlib library is described by RFC
(Request for Comments) 1950 to 1952 in the files:
(Request for Comments) 1950 to 1952 in the files:
.IP
.IP
http://www.ietf.org/rfc/rfc1950.txt (concerning zlib format)
http://www.ietf.org/rfc/rfc1950.txt (concerning zlib format)
.br
.br
http://www.ietf.org/rfc/rfc1951.txt (concerning deflate format)
http://www.ietf.org/rfc/rfc1951.txt (concerning deflate format)
.br
.br
http://www.ietf.org/rfc/rfc1952.txt (concerning gzip format)
http://www.ietf.org/rfc/rfc1952.txt (concerning gzip format)
.LP
.LP
These documents are also available in other formats from:
These documents are also available in other formats from:
.IP
.IP
ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html
ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html
.LP
.LP
Mark Nelson (markn@ieee.org) wrote an article about
Mark Nelson (markn@ieee.org) wrote an article about
.I zlib
.I zlib
for the Jan. 1997 issue of  Dr. Dobb's Journal;
for the Jan. 1997 issue of  Dr. Dobb's Journal;
a copy of the article is available at:
a copy of the article is available at:
.IP
.IP
http://dogma.net/markn/articles/zlibtool/zlibtool.htm
http://dogma.net/markn/articles/zlibtool/zlibtool.htm
.SH "REPORTING PROBLEMS"
.SH "REPORTING PROBLEMS"
Before reporting a problem,
Before reporting a problem,
please check the
please check the
.I zlib
.I zlib
web site to verify that you have the latest version of
web site to verify that you have the latest version of
.IR zlib ;
.IR zlib ;
otherwise,
otherwise,
obtain the latest version and see if the problem still exists.
obtain the latest version and see if the problem still exists.
Please read the
Please read the
.I zlib
.I zlib
FAQ at:
FAQ at:
.IP
.IP
http://www.gzip.org/zlib/zlib_faq.html
http://www.gzip.org/zlib/zlib_faq.html
.LP
.LP
before asking for help.
before asking for help.
Send questions and/or comments to zlib@gzip.org,
Send questions and/or comments to zlib@gzip.org,
or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).
or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).
.SH AUTHORS
.SH AUTHORS
Version 1.2.3
Version 1.2.3
Copyright (C) 1995-2005 Jean-loup Gailly (jloup@gzip.org)
Copyright (C) 1995-2005 Jean-loup Gailly (jloup@gzip.org)
and Mark Adler (madler@alumni.caltech.edu).
and Mark Adler (madler@alumni.caltech.edu).
.LP
.LP
This software is provided "as-is,"
This software is provided "as-is,"
without any express or implied warranty.
without any express or implied warranty.
In no event will the authors be held liable for any damages
In no event will the authors be held liable for any damages
arising from the use of this software.
arising from the use of this software.
See the distribution directory with respect to requirements
See the distribution directory with respect to requirements
governing redistribution.
governing redistribution.
The deflate format used by
The deflate format used by
.I zlib
.I zlib
was defined by Phil Katz.
was defined by Phil Katz.
The deflate and
The deflate and
.I zlib
.I zlib
specifications were written by L. Peter Deutsch.
specifications were written by L. Peter Deutsch.
Thanks to all the people who reported problems and suggested various
Thanks to all the people who reported problems and suggested various
improvements in
improvements in
.IR zlib ;
.IR zlib ;
who are too numerous to cite here.
who are too numerous to cite here.
.LP
.LP
UNIX manual page by R. P. C. Rodgers,
UNIX manual page by R. P. C. Rodgers,
U.S. National Library of Medicine (rodgers@nlm.nih.gov).
U.S. National Library of Medicine (rodgers@nlm.nih.gov).
.\" end of man page
.\" end of man page
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.