zlib-bytes-0.1.0.0: cbits/hs_zlib.c
#include "Rts.h"
#include "zlib.h"
int hs_initDecompress
( z_stream *st
, char *src // source buffer of compressed bytes
, HsInt src_len // number of bytes available to be read from src
) {
st->zalloc = Z_NULL;
st->zfree = Z_NULL;
st->opaque = Z_NULL;
st->next_in = src;
st->avail_in = (int)src_len;
return inflateInit(st);
}
int hs_decompressChunk
( z_stream *st
, char *dst // output buffer for decompressed bytes
, HsInt dst_len // number of bytes available to write into dst
) {
st->avail_out = (int)dst_len;
st->next_out = dst;
return inflate(st, Z_NO_FLUSH);
}
int hs_avail_out(z_stream *st) { return st->avail_out; }