struct inflate_state *state;
if (strm == NULL || strm->state == NULL)
- return -1L << 16;
+ return -65536;
state = (struct inflate_state *)strm->state;
return ((long)(state->back) << 16) + (state->mode == COPY ? state->length :
(state->mode == MATCH ? state->was - state->length : 0));
location in the input stream can be determined from avail_in and data_type
as noted in the description for the Z_BLOCK flush parameter for inflate.
- inflateMark returns the value noted above or -1 << 16 if the provided
+ inflateMark returns the value noted above or -65536 if the provided
source stream state was inconsistent.
*/