diff options
Diffstat (limited to 'gzguts.h')
-rw-r--r-- | gzguts.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -155,9 +155,10 @@ typedef struct { | |||
155 | unsigned char *out; /* output buffer (double-sized when reading) */ | 155 | unsigned char *out; /* output buffer (double-sized when reading) */ |
156 | int direct; /* 0 if processing gzip, 1 if transparent */ | 156 | int direct; /* 0 if processing gzip, 1 if transparent */ |
157 | /* just for reading */ | 157 | /* just for reading */ |
158 | int eof; /* true if end of input file reached */ | ||
159 | z_off64_t start; /* where the gzip data started, for rewinding */ | ||
160 | int how; /* 0: get header, 1: copy, 2: decompress */ | 158 | int how; /* 0: get header, 1: copy, 2: decompress */ |
159 | z_off64_t start; /* where the gzip data started, for rewinding */ | ||
160 | int eof; /* true if end of input file reached */ | ||
161 | int past; /* true if read requested past end */ | ||
161 | /* just for writing */ | 162 | /* just for writing */ |
162 | int level; /* compression level */ | 163 | int level; /* compression level */ |
163 | int strategy; /* compression strategy */ | 164 | int strategy; /* compression strategy */ |