| 1077 | } |
| 1078 | |
| 1079 | int32_t ExtractToMemory(ZipArchiveHandle handle, ZipEntry* entry, uint8_t* begin, uint32_t size) { |
| 1080 | MemoryWriter writer(begin, size); |
| 1081 | return ExtractToWriter(handle, entry, &writer); |
| 1082 | } |
| 1083 | |
| 1084 | int32_t ExtractEntryToFile(ZipArchiveHandle handle, ZipEntry* entry, int fd) { |
| 1085 | auto writer = FileWriter::Create(fd, entry); |
no test coverage detected