* Return the Nth entry in the archive. */
| 198 | * Return the Nth entry in the archive. |
| 199 | */ |
| 200 | ZipEntry* ZipFile::getEntryByIndex(int idx) const |
| 201 | { |
| 202 | if (idx < 0 || idx >= (int) mEntries.size()) |
| 203 | return NULL; |
| 204 | |
| 205 | return mEntries[idx]; |
| 206 | } |
| 207 | |
| 208 | /* |
| 209 | * Find an entry by name. |
no test coverage detected