| 212 | } |
| 213 | |
| 214 | int ZEXPORT inflateInit_(z_streamp strm, const char *version, int stream_size) |
| 215 | { |
| 216 | return inflateInit2_(strm, DEF_WBITS, version, stream_size); |
| 217 | } |
| 218 | |
| 219 | int ZEXPORT inflatePrime(z_streamp strm, int bits, int value) |
| 220 | { |
nothing calls this directly
no test coverage detected