diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:14:39 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:14:39 -0700 |
commit | 423eb40306489f9c88f7dba32c2f69179166730b (patch) | |
tree | b5a83b0b1e52bbe0de973dcbc7ec008c1d7cf7d9 /infblock.h | |
parent | 8a2acbffc86012de3523ecf91db2c4ea1b1c4ea2 (diff) | |
download | zlib-1.0.1.tar.gz zlib-1.0.1.tar.bz2 zlib-1.0.1.zip |
zlib 1.0.1v1.0.1
Diffstat (limited to 'infblock.h')
-rw-r--r-- | infblock.h | 7 |
1 files changed, 6 insertions, 1 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 Mark Adler | 2 | * Copyright (C) 1995-1996 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 | ||
@@ -30,3 +30,8 @@ extern int inflate_blocks_free OF(( | |||
30 | inflate_blocks_statef *, | 30 | inflate_blocks_statef *, |
31 | z_stream *, | 31 | z_stream *, |
32 | uLongf *)); /* check value on output */ | 32 | uLongf *)); /* check value on output */ |
33 | |||
34 | extern void inflate_set_dictionary OF(( | ||
35 | inflate_blocks_statef *s, | ||
36 | const Bytef *d, /* dictionary */ | ||
37 | uInt n)); /* dictionary length */ | ||