MCPcopy Create free account
hub / github.com/crossuo/crossuo / Print

Method Print

src/CrossUO.cpp:203–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected