| 216 | } |
| 217 | |
| 218 | int ZEXPORT inflateInit_(z_streamp strm, const char *version, |
| 219 | int stream_size) { |
| 220 | return inflateInit2_(strm, DEF_WBITS, version, stream_size); |
| 221 | } |
| 222 | |
| 223 | int ZEXPORT inflatePrime(z_streamp strm, int bits, int value) { |
| 224 | struct inflate_state FAR *state; |
nothing calls this directly
no test coverage detected