MCPcopy Index your code
hub / github.com/RsyncProject/rsync / inflateReset

Function inflateReset

zlib/inflate.c:128–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128int ZEXPORT inflateReset(z_streamp strm)
129{
130 struct inflate_state FAR *state;
131
132 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
133 state = (struct inflate_state FAR *)strm->state;
134 state->wsize = 0;
135 state->whave = 0;
136 state->wnext = 0;
137 return inflateResetKeep(strm);
138}
139
140int ZEXPORT inflateReset2(z_streamp strm, int windowBits)
141{

Callers 3

recv_deflated_tokenFunction · 0.85
inflateReset2Function · 0.85
inflate.cFile · 0.85

Calls 1

inflateResetKeepFunction · 0.85

Tested by

no test coverage detected