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