| 44 | nullcThrowError("Cannot open file."); |
| 45 | } |
| 46 | void FileClose(File* file) |
| 47 | { |
| 48 | fclose(file->handle); |
| 49 | file->flag = 0; |
| 50 | file->handle = NULL; |
| 51 | } |
| 52 | |
| 53 | int FileOpened(File* file) |
| 54 | { |
nothing calls this directly
no outgoing calls
no test coverage detected