| 103 | nullcThrowError("Failed to read from a file."); |
| 104 | } |
| 105 | void FileReadC(char* data, File* file) |
| 106 | { |
| 107 | FileReadType<char>(data, file); |
| 108 | } |
| 109 | void FileReadS(short* data, File* file) |
| 110 | { |
| 111 | FileReadType<short>(data, file); |
nothing calls this directly
no outgoing calls
no test coverage detected