========================================================================= */
(strm, head)
| 543 | |
| 544 | /* ========================================================================= */ |
| 545 | int ZEXPORT deflateSetHeader(strm, head) |
| 546 | z_streamp strm; |
| 547 | |
| 548 | gz_headerp head; |
| 549 | { |
| 550 | if (deflateStateCheck(strm) || strm->state->wrap != 2) |
| 551 | return Z_STREAM_ERROR; |
| 552 | strm->state->gzhead = head; |
| 553 | return Z_OK; |
| 554 | } |
| 555 | |
| 556 | /* ========================================================================= */ |
| 557 | int ZEXPORT deflatePending(strm, pending, bits) |
nothing calls this directly
no test coverage detected