xref: /onnv-gate/usr/src/uts/common/zmod/inffast.h (revision 3886:3291401d66a6)
1*3886Sahl /* inffast.h -- header to use inffast.c
2*3886Sahl  * Copyright (C) 1995-2003 Mark Adler
3*3886Sahl  * For conditions of distribution and use, see copyright notice in zlib.h
40Sstevel@tonic-gate  */
50Sstevel@tonic-gate 
60Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
70Sstevel@tonic-gate 
8*3886Sahl /* WARNING: this file should *not* be used by applications. It is
9*3886Sahl    part of the implementation of the compression library and is
10*3886Sahl    subject to change. Applications should only use zlib.h.
11*3886Sahl  */
120Sstevel@tonic-gate 
13*3886Sahl void inflate_fast OF((z_streamp strm, unsigned start));
14