(strm)
| 144 | } |
| 145 | |
| 146 | int ZEXPORT inflateReset(strm) |
| 147 | |
| 148 | z_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 | |
| 160 | int ZEXPORT inflateReset2(strm, windowBits) |
| 161 | z_streamp strm; |
no test coverage detected