uncompress
fn
void[] uncompress(const(void)[] srcbuf, size_t destlen = 0u, int winbits = 15)Decompresses the data in srcbuf[].
Parameters
srcbuf | buffer containing the compressed data. |
destlen | size of the uncompressed data. It need not be accurate, but the decompression will be faster if the exact size is supplied. |
winbits | the base two logarithm of the maximum window size. |
Returns
the decompressed data.