| 314 | } |
| 315 | |
| 316 | int GetFileOpenMode(FileHandle handle) { |
| 317 | return g_open_modes[GetFileIndex(GetInternalFile(handle))]; |
| 318 | } |
| 319 | |
| 320 | void CloseFile(FileHandle handle) { |
| 321 | const size_t index = GetFileIndex(GetInternalFile(handle)); |
nothing calls this directly
no test coverage detected