11 /* Like getline, but read from a gzFile. Allocation is with talloc.
14 * UTIL_SUCCESS, UTIL_OUT_OF_MEMORY, UTIL_ERRNO, UTIL_GZERROR
15 * Consult util.h for description
17 * UTIL_EOF End of file encountered before
21 gz_getline (void *ctx, char **lineptr, ssize_t *bytes_read, gzFile stream);
23 /* return a suitable error string based on the return status
28 gz_error_string (util_status_t status, gzFile stream);
30 /* Call gzerror with a dummy errno argument, the docs don't promise to
31 * support the NULL case */
33 gzerror_str (gzFile file);