zlib 0.94

This commit is contained in:
Mark Adler
2011-09-09 23:09:18 -07:00
parent 6b834a58bd
commit 23c69f1069
34 changed files with 801 additions and 432 deletions

View File

@@ -9,23 +9,24 @@
*/
struct inflate_blocks_state;
typedef struct inflate_blocks_state FAR inflate_blocks_statef;
extern struct inflate_blocks_state * inflate_blocks_new __P((
z_stream *,
check_func, /* check function */
uInt)); /* window size */
extern inflate_blocks_statef * inflate_blocks_new OF((
z_stream *z,
check_func c, /* check function */
uInt w)); /* window size */
extern int inflate_blocks __P((
struct inflate_blocks_state *,
extern int inflate_blocks OF((
inflate_blocks_statef *,
z_stream *,
int)); /* initial return code */
extern void inflate_blocks_reset __P((
struct inflate_blocks_state *,
extern void inflate_blocks_reset OF((
inflate_blocks_statef *,
z_stream *,
uLong *)); /* check value on output */
uLongf *)); /* check value on output */
extern int inflate_blocks_free __P((
struct inflate_blocks_state *,
extern int inflate_blocks_free OF((
inflate_blocks_statef *,
z_stream *,
uLong *)); /* check value on output */
uLongf *)); /* check value on output */