Returns the error message for the last error which occurred on the * given compressed file. errnum is set to zlib error number. If an * error occurred in the file system and not in the compression library, * errnum is set to Z_ERRNO and the application may consult errno * to get the exact error code. */
| 95 | * to get the exact error code. |
| 96 | */ |
| 97 | const char* error(int* errnum) { |
| 98 | return ::gzerror(m_fp, errnum); |
| 99 | } |
| 100 | |
| 101 | gzFile fp() { return m_fp; } |
| 102 |
no outgoing calls
no test coverage detected