(strm, head)
| 19540 | |
| 19541 | |
| 19542 | function deflateSetHeader(strm, head) { |
| 19543 | if (!strm || !strm.state) { return Z_STREAM_ERROR; } |
| 19544 | if (strm.state.wrap !== 2) { return Z_STREAM_ERROR; } |
| 19545 | strm.state.gzhead = head; |
| 19546 | return Z_OK; |
| 19547 | } |
| 19548 | |
| 19549 | |
| 19550 | function deflateInit2(strm, level, method, windowBits, memLevel, strategy) { |
nothing calls this directly
no outgoing calls
no test coverage detected