========================================================================= */
(strm, head)
| 518 | |
| 519 | /* ========================================================================= */ |
| 520 | int ZEXPORT deflateSetHeader (strm, head) |
| 521 | z_streamp strm; |
| 522 | gz_headerp head; |
| 523 | { |
| 524 | if (deflateStateCheck(strm) || strm->state->wrap != 2) |
| 525 | return Z_STREAM_ERROR; |
| 526 | strm->state->gzhead = head; |
| 527 | return Z_OK; |
| 528 | } |
| 529 | |
| 530 | /* ========================================================================= */ |
| 531 | int ZEXPORT deflatePending (strm, pending, bits) |
no test coverage detected