Searched defs:z_stream_s (Results 1 – 1 of 1) sorted by relevance
420 typedef struct z_stream_s { struct421 Bytef *next_in; /* next input byte */422 uInt avail_in; /* number of bytes available at next_in */423 uLong total_in; /* total nb of input bytes read so far */424 Bytef *next_out; /* next output byte should be put there */425 uInt avail_out; /* remaining free space at next_out */426 uLong total_out; /* total nb of bytes output so far */427 char *msg; /* last error message, NULL if no error */428 struct internal_state FAR *state; /* not visible by applications */429 alloc_func zalloc; /* used to allocate the internal state */[all …]