sl@0
|
1 |
/* inffast.h -- header to use inffast.c
|
sl@0
|
2 |
* Copyright (C) 1995-1998 Mark Adler
|
sl@0
|
3 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
|
sl@0
|
6 |
/* WARNING: this file should *not* be used by applications. It is
|
sl@0
|
7 |
part of the implementation of the compression library and is
|
sl@0
|
8 |
subject to change. Applications should only use zlib.h.
|
sl@0
|
9 |
*/
|
sl@0
|
10 |
|
sl@0
|
11 |
extern int inflate_fast OF((
|
sl@0
|
12 |
uInt,
|
sl@0
|
13 |
uInt,
|
sl@0
|
14 |
inflate_huft *,
|
sl@0
|
15 |
inflate_huft *,
|
sl@0
|
16 |
inflate_blocks_statef *,
|
sl@0
|
17 |
z_streamp ));
|