diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:11:37 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:11:37 -0700 |
commit | 56bcb184fac036a45cb8937238d51778d0a796aa (patch) | |
tree | 7b127418b30e135f8ce27ec136038b5090540820 /infblock.h | |
parent | 25e5325501edade156e897f95afdaa2be78ad9a3 (diff) | |
download | zlib-7d4601503c907ac1d20148397a540ddd40765289.tar.gz zlib-7d4601503c907ac1d20148397a540ddd40765289.tar.bz2 zlib-7d4601503c907ac1d20148397a540ddd40765289.zip |
zlib 0.99v0.99
Diffstat (limited to 'infblock.h')
-rw-r--r-- | infblock.h | 8 |
1 files changed, 7 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,9 @@ 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 | z_stream *z, | ||
37 | const Bytef *d, /* dictionary */ | ||
38 | uInt n)); /* dictionary length */ | ||