| 1370 | //========================================================================== |
| 1371 | |
| 1372 | int FileSystem::GetEntryCount (int rfnum) const noexcept |
| 1373 | { |
| 1374 | if ((uint32_t)rfnum >= Files.size()) |
| 1375 | { |
| 1376 | return 0; |
| 1377 | } |
| 1378 | |
| 1379 | return Files[rfnum]->EntryCount(); |
| 1380 | } |
| 1381 | |
| 1382 | |
| 1383 | //========================================================================== |
nothing calls this directly
no test coverage detected