MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / ConsoleColorizePrint

Function ConsoleColorizePrint

source/Debugger/Debugger_Help.cpp:409–415  ·  view source on GitHub ↗

NOTE: This appends a new line

Source from the content-addressed store, hash-verified

407
408// NOTE: This appends a new line
409inline bool ConsoleColorizePrint( const char* pText )
410{
411 char colorizeBuf[CONSOLE_WIDTH * 2];
412 if (!Colorize(colorizeBuf, pText)) return false;
413 ConsolePrint(colorizeBuf);
414 return true;
415}
416
417inline bool ConsoleColorizePrintVa( const char* format, va_list va )
418{

Callers 2

ConsoleColorizePrintVaFunction · 0.85
CmdHelpSpecificFunction · 0.85

Calls 2

ColorizeFunction · 0.85
ConsolePrintFunction · 0.85

Tested by

no test coverage detected