Modified Files: README adler32.c compress.c config.mk crc32.c deflate.c deflate.h example.c gzio.c inffast.c inffast.h inffixed.h inflate.c inftrees.c inftrees.h manifest.mn minigzip.c trees.c uncompr.c zconf.h zlib.h zutil.c zutil.h Added Files: crc32.h infback.c inflate.h Removed Files: infblock.c infblock.h infcodes.c infcodes.h infutil.c infutil.h makefile.win maketree.c netscape_mods.doc zip16.def git-svn-id: svn://10.0.0.236/trunk@164818 18797224-902f-48f8-a5cc-f745e15eee43
12 lines
407 B
C
12 lines
407 B
C
/* inffast.h -- header to use inffast.c
|
|
* Copyright (C) 1995-2003 Mark Adler
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
/* WARNING: this file should *not* be used by applications. It is
|
|
part of the implementation of the compression library and is
|
|
subject to change. Applications should only use zlib.h.
|
|
*/
|
|
|
|
void inflate_fast OF((z_streamp strm, unsigned start));
|