| 289 | } |
| 290 | |
| 291 | const char* ZipArchive::getFileName(u32 index) |
| 292 | { |
| 293 | if (index >= (u32)m_entryCount) { return nullptr; } |
| 294 | return m_entries[index].name.c_str(); |
| 295 | } |
| 296 | |
| 297 | size_t ZipArchive::getFileLength(u32 index) |
| 298 | { |
no test coverage detected