========================================================================= */
| 735 | |
| 736 | /* ========================================================================= */ |
| 737 | int ZEXPORT deflateUsed(z_streamp strm, int *bits) { |
| 738 | if (deflateStateCheck(strm)) return Z_STREAM_ERROR; |
| 739 | if (bits != Z_NULL) |
| 740 | *bits = strm->state->bi_used; |
| 741 | return Z_OK; |
| 742 | } |
| 743 | |
| 744 | /* ========================================================================= */ |
| 745 | int ZEXPORT deflatePrime(z_streamp strm, int bits, int value) { |
nothing calls this directly
no test coverage detected