Binary read the given number of bytes from the compressed file. */
| 85 | /* Binary read the given number of bytes from the compressed file. |
| 86 | */ |
| 87 | int read(void* buf, size_t len) { |
| 88 | return ::gzread(m_fp, buf, len); |
| 89 | } |
| 90 | |
| 91 | /* Returns the error message for the last error which occurred on the |
| 92 | * given compressed file. errnum is set to zlib error number. If an |
no outgoing calls