aboutsummaryrefslogtreecommitdiff
path: root/deps/zlib/gzfile.h
blob: 2df484247254123ca9a301eed90652a08a5f573d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _GZFILE_H
#define _GZFILE_H

struct gzFile_s
{
   unsigned have;
   unsigned char *next;
   z_off64_t pos;
};

#endif