Home | History | Annotate | Download | only in include

Lines Matching defs:gzFile

1066 typedef voidp gzFile;
1068 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1085 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1087 gzdopen() associates a gzFile with the file descriptor fd. File
1091 The next call of gzclose on the returned gzFile will also close the
1098 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1106 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1114 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1122 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...));
1135 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1142 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1151 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1157 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1163 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1173 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1183 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
1201 ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
1208 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
1217 ZEXTERN int ZEXPORT gzeof OF((gzFile file));
1223 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1229 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1236 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1245 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));