| 1105 | } |
| 1106 | |
| 1107 | int GetFileDescriptor(const ZipArchiveHandle handle) { |
| 1108 | return reinterpret_cast<ZipArchive*>(handle)->mapped_zip.GetFileDescriptor(); |
| 1109 | } |
| 1110 | |
| 1111 | ZipString::ZipString(const char* entry_name) : name(reinterpret_cast<const uint8_t*>(entry_name)) { |
| 1112 | size_t len = strlen(entry_name); |
nothing calls this directly
no test coverage detected