| 201 | } |
| 202 | |
| 203 | void Print(const char *format, ...) |
| 204 | { |
| 205 | if (m_File == nullptr) |
| 206 | { |
| 207 | return; |
| 208 | } |
| 209 | |
| 210 | va_list arg; |
| 211 | va_start(arg, format); |
| 212 | vfprintf(m_File, format, arg); |
| 213 | va_end(arg); |
| 214 | fflush(m_File); |
| 215 | } |
| 216 | |
| 217 | FILE *m_File = nullptr; |
| 218 | fs_path FileName; |
no outgoing calls
no test coverage detected