(strm, version, stream_size)
| 185 | } |
| 186 | |
| 187 | int ZEXPORT inflateInit_(strm, version, stream_size) |
| 188 | z_streamp strm; |
| 189 | const char *version; |
| 190 | int stream_size; |
| 191 | { |
| 192 | return inflateInit2_(strm, DEF_WBITS, version, stream_size); |
| 193 | } |
| 194 | |
| 195 | /* |
| 196 | Return state with length and distance decoding tables and index sizes set to |
nothing calls this directly
no test coverage detected