| 101 | //--------------------------------------------------------------------------- |
| 102 | |
| 103 | void LogFileOutput(const char* format, ...) |
| 104 | { |
| 105 | if (!g_fh) |
| 106 | return; |
| 107 | |
| 108 | va_list args; |
| 109 | va_start(args, format); |
| 110 | |
| 111 | vfprintf(g_fh, format, args); |
| 112 | |
| 113 | va_end(args); |
| 114 | } |
no outgoing calls
no test coverage detected