=========================================================================== Opens a gzip (.gz) file for reading or writing. */
(path, mode)
| 211 | Opens a gzip (.gz) file for reading or writing. |
| 212 | */ |
| 213 | gzFile ZEXPORT gzopen (path, mode) |
| 214 | const char *path; |
| 215 | const char *mode; |
| 216 | { |
| 217 | return gz_open (path, mode, -1); |
| 218 | } |
| 219 | |
| 220 | /* =========================================================================== |
| 221 | Associate a gzFile with the file descriptor fd. fd is not dup'ed here |
nothing calls this directly
no test coverage detected