| 6416 | static const size_t ZIP_MAX_UNCOMP = 500U * 1024U * 1024U; |
| 6417 | |
| 6418 | static uint16_t zip_read_u16le(const unsigned char *p) { |
| 6419 | return (uint16_t)((uint16_t)p[0] | ((uint16_t)p[1] << BYTE_SHIFT)); |
| 6420 | } |
| 6421 | |
| 6422 | static uint32_t zip_read_u32le(const unsigned char *p) { |
| 6423 | return ((uint32_t)p[0]) | ((uint32_t)p[1] << BYTE_SHIFT) | |
no outgoing calls
no test coverage detected