2002-08-02 10:01:35 +00:00
|
|
|
/* infcodes.h -- header to use infcodes.c
|
|
|
|
* Copyright (C) 1995-1998 Mark Adler
|
|
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct inflate_codes_state;
|
|
|
|
typedef struct inflate_codes_state FAR inflate_codes_statef;
|
|
|
|
|
|
|
|
extern inflate_codes_statef *inflate_codes_new OF((
|
|
|
|
uInt, uInt,
|
2002-09-30 17:39:10 +00:00
|
|
|
inflate_huft *, inflate_huft *));
|
2002-08-02 10:01:35 +00:00
|
|
|
|
|
|
|
extern int inflate_codes OF((
|
|
|
|
z_streamp ,
|
|
|
|
int));
|
|
|
|
|
2002-09-30 17:39:10 +00:00
|
|
|
#define inflate_codes_free(z,c) ZFREE(z,c)
|
2002-08-02 10:01:35 +00:00
|
|
|
|