(strm)
| 20655 | } |
| 20656 | |
| 20657 | function inflateReset(strm) { |
| 20658 | var state; |
| 20659 | |
| 20660 | if (!strm || !strm.state) { return Z_STREAM_ERROR; } |
| 20661 | state = strm.state; |
| 20662 | state.wsize = 0; |
| 20663 | state.whave = 0; |
| 20664 | state.wnext = 0; |
| 20665 | return inflateResetKeep(strm); |
| 20666 | |
| 20667 | } |
| 20668 | |
| 20669 | function inflateReset2(strm, windowBits) { |
| 20670 | var wrap; |
no test coverage detected