========================================================================= */
| 712 | |
| 713 | /* ========================================================================= */ |
| 714 | int ZEXPORT deflateSetHeader(z_streamp strm, gz_headerp head) { |
| 715 | if (deflateStateCheck(strm) || strm->state->wrap != 2) |
| 716 | return Z_STREAM_ERROR; |
| 717 | strm->state->gzhead = head; |
| 718 | return Z_OK; |
| 719 | } |
| 720 | |
| 721 | /* ========================================================================= */ |
| 722 | int ZEXPORT deflatePending(z_streamp strm, unsigned *pending, int *bits) { |
nothing calls this directly
no test coverage detected