(path, mode)
| 180 | gzFile gz_open OF((const char *, int, const char *)); |
| 181 | |
| 182 | gzFile gzopen(path, mode) |
| 183 | const char *path; |
| 184 | const char *mode; |
| 185 | { |
| 186 | return gz_open(path, -1, mode); |
| 187 | } |
| 188 | |
| 189 | gzFile gzdopen(fd, mode) |
| 190 | int fd; |
no test coverage detected