zlib/inffast.h

18 lines
488 B
C
Raw Normal View History

2011-09-10 01:52:17 -04:00
/* inffast.h -- header to use inffast.c
2011-09-10 02:20:42 -04:00
* Copyright (C) 1995-2002 Mark Adler
2011-09-10 01:52:17 -04:00
* 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.
*/
2011-09-10 02:09:18 -04:00
extern int inflate_fast OF((
2011-09-10 01:52:17 -04:00
uInt,
uInt,
inflate_huft *,
inflate_huft *,
2011-09-10 02:09:18 -04:00
inflate_blocks_statef *,
2011-09-10 02:17:02 -04:00
z_streamp ));