(file, flush)
| 749 | } |
| 750 | |
| 751 | int ZEXPORT gzflush (file, flush) |
| 752 | gzFile file; |
| 753 | int flush; |
| 754 | { |
| 755 | gz_stream *s = (gz_stream*)file; |
| 756 | int err = do_flush (file, flush); |
| 757 | |
| 758 | if (err) return err; |
| 759 | fflush(s->file); |
| 760 | return s->z_err == Z_STREAM_END ? Z_OK : s->z_err; |
| 761 | } |
| 762 | #endif /* NO_GZCOMPRESS */ |
| 763 | |
| 764 | /* =========================================================================== |
nothing calls this directly
no test coverage detected