MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / printf

Function printf

Engine/source/console/console.cpp:673–679  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

671
672//------------------------------------------------------------------------------
673void printf(const char* fmt,...)
674{
675 va_list argptr;
676 va_start(argptr, fmt);
677 _printf(ConsoleLogEntry::Normal, ConsoleLogEntry::General, fmt, argptr);
678 va_end(argptr);
679}
680
681void warnf(ConsoleLogEntry::Type type, const char* fmt,...)
682{

Callers 15

handleErrorMethod · 0.85
handleWarningMethod · 0.85
normalizeFunction · 0.85
internal_dfa_execFunction · 0.85
pcre_compile2Function · 0.85
pcharsFunction · 0.85
match_refFunction · 0.85
pcre_exec.cFile · 0.85
pcre_execFunction · 0.85
PrintTestPartResultFunction · 0.85
ColoredPrintfFunction · 0.85

Calls 1

_printfFunction · 0.85

Tested by 15

PrintTestPartResultFunction · 0.68
ColoredPrintfFunction · 0.68
PrintTestNameMethod · 0.68
OnTestIterationStartMethod · 0.68
OnTestCaseStartMethod · 0.68
OnTestStartMethod · 0.68
OnTestEndMethod · 0.68
OnTestCaseEndMethod · 0.68
PrintFailedTestsMethod · 0.68