219 |
mateuszvis |
1 |
|
|
|
2 |
#ifndef INF_H
|
|
|
3 |
#define INF_H
|
|
|
4 |
|
|
|
5 |
/* Decompress from file source to file dest until stream ends or EOF.
|
|
|
6 |
* inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be allocated
|
|
|
7 |
* for processing, Z_DATA_ERROR if the deflate data is invalid or incomplete,
|
|
|
8 |
* Z_VERSION_ERROR if the version of zlib.h and the version of the library
|
|
|
9 |
* linked do not match, or Z_ERRNO if there is an error reading or writing the
|
|
|
10 |
* files. */
|
|
|
11 |
int inf(FILE *source, FILE *dest, unsigned char *buff32k, unsigned long *cksum, long streamlen);
|
|
|
12 |
|
|
|
13 |
#endif
|