MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / inflateReset

Function inflateReset

extlibs/minizip/src/inflate.c:146–158  ·  view source on GitHub ↗
(strm)

Source from the content-addressed store, hash-verified

144}
145
146int ZEXPORT inflateReset(strm)
147
148z_streamp strm;
149{
150 struct inflate_state FAR * state;
151
152 if (inflateStateCheck(strm)) return Z_STREAM_ERROR;
153 state = (struct inflate_state FAR *)strm->state;
154 state->wsize = 0;
155 state->whave = 0;
156 state->wnext = 0;
157 return inflateResetKeep(strm);
158}
159
160int ZEXPORT inflateReset2(strm, windowBits)
161z_streamp strm;

Callers 3

gz_lookFunction · 0.85
inflateReset2Function · 0.85
inflate.cFile · 0.85

Calls 2

inflateStateCheckFunction · 0.85
inflateResetKeepFunction · 0.85

Tested by

no test coverage detected