| 112 | } |
| 113 | |
| 114 | void GzipIfstream::close() |
| 115 | { |
| 116 | if (gzfile_ != nullptr) |
| 117 | { |
| 118 | gzclose(gzfile_); |
| 119 | } |
| 120 | gzfile_ = nullptr; |
| 121 | stream_at_end_ = true; |
| 122 | } |
| 123 | |
| 124 | /* |
| 125 | void GzipIfstream::updateCRC32(const char* s, const size_t n) |
no outgoing calls