zlib/inffast.h

18 lines
488 B
C
Raw Normal View History

2011-09-10 05:52:17 +00:00
/* inffast.h -- header to use inffast.c
2011-09-10 06:14:39 +00:00
* Copyright (C) 1995-1996 Mark Adler
2011-09-10 05:52:17 +00: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 06:09:18 +00:00
extern int inflate_fast OF((
2011-09-10 05:52:17 +00:00
uInt,
uInt,
inflate_huft *,
inflate_huft *,
2011-09-10 06:09:18 +00:00
inflate_blocks_statef *,
2011-09-10 06:17:02 +00:00
z_streamp ));