========================================================================= */
(strm, head)
| 437 | |
| 438 | /* ========================================================================= */ |
| 439 | int ZEXPORT deflateSetHeader (strm, head) |
| 440 | z_streamp strm; |
| 441 | gz_headerp head; |
| 442 | { |
| 443 | if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; |
| 444 | if (strm->state->wrap != 2) return Z_STREAM_ERROR; |
| 445 | strm->state->gzhead = head; |
| 446 | return Z_OK; |
| 447 | } |
| 448 | |
| 449 | /* ========================================================================= */ |
| 450 | int ZEXPORT deflatePending (strm, pending, bits) |
nothing calls this directly
no outgoing calls
no test coverage detected