| 1006 | } // namespace zip_archive_lkchan |
| 1007 | |
| 1008 | static int32_t InflateEntryToWriter(MappedZipFile& mapped_zip, const ZipEntry* entry, |
| 1009 | zip_archive_lkchan::Writer* writer, uint64_t* crc_out) { |
| 1010 | const EntryReader reader(mapped_zip, entry); |
| 1011 | |
| 1012 | return zip_archive_lkchan::Inflate(reader, entry->compressed_length, entry->uncompressed_length, writer, |
| 1013 | crc_out); |
| 1014 | } |
| 1015 | |
| 1016 | static int32_t CopyEntryToWriter(MappedZipFile& mapped_zip, const ZipEntry* entry, |
| 1017 | zip_archive_lkchan::Writer* writer, uint64_t* crc_out) { |
no test coverage detected