| 34 | /* uLong is 32-bit on Windows, even on 64-bit systems */ |
| 35 | #define ULONG_MAX_VALUE maximum_unsigned_value_of_type(uLong) |
| 36 | static inline uInt zlib_buf_cap(unsigned long len) |
| 37 | { |
| 38 | return (ZLIB_BUF_MAX < len) ? ZLIB_BUF_MAX : len; |
| 39 | } |
| 40 | |
| 41 | static inline uLong zlib_uLong_cap(size_t s) |
| 42 | { |