MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / printMessage

Function printMessage

3rd_party/Src/ode/ode/src/error.cpp:70–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68
69
70static void printMessage (int num, const char *msg1, const char *msg2,
71 va_list ap)
72{
73 fflush (stderr);
74 fflush (stdout);
75 if (num) fprintf (stderr,"\n%s %d: ",msg1,num);
76 else fprintf (stderr,"\n%s: ",msg1);
77 vfprintf (stderr,msg2,ap);
78 fprintf (stderr,"\n");
79 fflush (stderr);
80}
81
82//****************************************************************************
83// unix

Callers 3

dErrorFunction · 0.85
dDebugFunction · 0.85
dMessageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected