xref: /netbsd-src/external/gpl3/binutils/dist/zlib/inffast.h (revision 9573673d78c64ea1eac42d7f2e9521be89932ae5)
1*9573673dSchristos /* inffast.h -- header to use inffast.c
2*9573673dSchristos  * Copyright (C) 1995-2003, 2010 Mark Adler
3*9573673dSchristos  * For conditions of distribution and use, see copyright notice in zlib.h
4*9573673dSchristos  */
5*9573673dSchristos 
6*9573673dSchristos /* WARNING: this file should *not* be used by applications. It is
7*9573673dSchristos    part of the implementation of the compression library and is
8*9573673dSchristos    subject to change. Applications should only use zlib.h.
9*9573673dSchristos  */
10*9573673dSchristos 
11*9573673dSchristos void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
12