========================================================================= */
(strm, pending, bits)
| 529 | |
| 530 | /* ========================================================================= */ |
| 531 | int ZEXPORT deflatePending (strm, pending, bits) |
| 532 | unsigned *pending; |
| 533 | int *bits; |
| 534 | z_streamp strm; |
| 535 | { |
| 536 | if (deflateStateCheck(strm)) return Z_STREAM_ERROR; |
| 537 | if (pending != Z_NULL) |
| 538 | *pending = strm->state->pending; |
| 539 | if (bits != Z_NULL) |
| 540 | *bits = strm->state->bi_valid; |
| 541 | return Z_OK; |
| 542 | } |
| 543 | |
| 544 | /* ========================================================================= */ |
| 545 | int ZEXPORT deflatePrime (strm, bits, value) |
no test coverage detected