MCPcopy Create free account
hub / github.com/OpenDUNE/OpenDUNE / Warning

Function Warning

src/os/error.c:32–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32void Warning(const char *format, ...) {
33 va_list ap;
34
35 va_start(ap, format);
36#if defined(TOS) || defined(DOS)
37 if(g_errlog) vfprintf(g_errlog, format, ap);
38 if(g_consoleActive) vfprintf(stderr, format, ap);
39#else
40 vfprintf(stderr, format, ap);
41#endif
42 va_end(ap);
43}
44
45#ifdef _DEBUG
46void Debug(const char *format, ...) {

Callers 15

ReadDir_ProcessAllFilesFunction · 0.70
String_DecompressFunction · 0.50
GFX_SetPaletteFunction · 0.50
_File_OpenFunction · 0.50
_File_Init_CallbackFunction · 0.50
File_InitFunction · 0.50
File_Open_ExFunction · 0.50
GameCredits_LoadPaletteFunction · 0.50
Load_IniFileFunction · 0.50
GameLoop_MainFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected