diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:33 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:33 -0700 |
commit | 7850e4e406dce1f7a819297eeb151d1ca18e7cd9 (patch) | |
tree | d4befddacae46b06c4924193904de533099610b4 /infblock.h | |
parent | ebd3c2c0e734fc99a1360014ea52ed04fe6aade4 (diff) | |
download | zlib-1.0.7.tar.gz zlib-1.0.7.tar.bz2 zlib-1.0.7.zip |
zlib 1.0.7v1.0.7
Diffstat (limited to 'infblock.h')
-rw-r--r-- | infblock.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* infblock.h -- header to use infblock.c | 1 | /* infblock.h -- header to use infblock.c |
2 | * Copyright (C) 1995-1996 Mark Adler | 2 | * Copyright (C) 1995-1998 Mark Adler |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -28,10 +28,12 @@ extern void inflate_blocks_reset OF(( | |||
28 | 28 | ||
29 | extern int inflate_blocks_free OF(( | 29 | extern int inflate_blocks_free OF(( |
30 | inflate_blocks_statef *, | 30 | inflate_blocks_statef *, |
31 | z_streamp , | 31 | z_streamp)); |
32 | uLongf *)); /* check value on output */ | ||
33 | 32 | ||
34 | extern void inflate_set_dictionary OF(( | 33 | extern void inflate_set_dictionary OF(( |
35 | inflate_blocks_statef *s, | 34 | inflate_blocks_statef *s, |
36 | const Bytef *d, /* dictionary */ | 35 | const Bytef *d, /* dictionary */ |
37 | uInt n)); /* dictionary length */ | 36 | uInt n)); /* dictionary length */ |
37 | |||
38 | extern int inflate_blocks_sync_point OF(( | ||
39 | inflate_blocks_statef *s)); | ||