-/* $OpenBSD: zlib.h,v 1.14 2022/05/08 14:04:22 tb Exp $ */
+/* $OpenBSD: zlib.h,v 1.15 2022/07/20 11:35:36 tb Exp $ */
/* zlib.h -- interface of the 'zlib' general purpose compression library
version 1.2.12, March 11th, 2022
typedef struct z_stream_s {
z_const Bytef *next_in; /* next input byte */
uInt avail_in; /* number of bytes available at next_in */
- z_off_t total_in; /* total number of input bytes read so far */
+ uLong total_in; /* total number of input bytes read so far */
Bytef *next_out; /* next output byte will go here */
uInt avail_out; /* remaining free space at next_out */
- z_off_t total_out; /* total number of bytes output so far */
+ uLong total_out; /* total number of bytes output so far */
z_const char *msg; /* last error message, NULL if no error */
struct internal_state FAR *state; /* not visible by applications */