2002-08-02 10:01:35 +00:00
|
|
|
/* inftrees.h -- header to use inftrees.c
|
|
|
|
* Copyright (C) 1995-1998 Mark Adler
|
|
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
extern int inflate_trees_bits OF((
|
|
|
|
uIntf *,
|
|
|
|
uIntf *,
|
|
|
|
inflate_huft * FAR *,
|
2002-09-30 17:39:10 +00:00
|
|
|
inflate_huft *));
|
2002-08-02 10:01:35 +00:00
|
|
|
|
|
|
|
extern int inflate_trees_dynamic OF((
|
|
|
|
uInt,
|
|
|
|
uInt,
|
|
|
|
uIntf *,
|
|
|
|
uIntf *,
|
|
|
|
uIntf *,
|
|
|
|
inflate_huft * FAR *,
|
|
|
|
inflate_huft * FAR *,
|
2002-09-30 17:39:10 +00:00
|
|
|
inflate_huft *));
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2002-09-30 17:57:38 +00:00
|
|
|
extern void inflate_trees_fixed OF((
|
2002-08-02 10:01:35 +00:00
|
|
|
uIntf *,
|
|
|
|
uIntf *,
|
|
|
|
inflate_huft * FAR *,
|
2002-09-30 17:39:10 +00:00
|
|
|
inflate_huft * FAR *));
|