MCPcopy Create free account
hub / github.com/beefytech/Beef / OutputDebugStr

Method OutputDebugStr

BeefySysLib/Common.cpp:843–853  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

841}
842
843void Beefy::OutputDebugStr(const StringImpl& theString)
844{
845 const int maxLen = 0xFFFE;
846 if (theString.length() > maxLen)
847 {
848 OutputDebugStr(theString.Substring(0, maxLen));
849 OutputDebugStr(theString.Substring(maxLen));
850 return;
851 }
852 BfpOutput_DebugString(theString.c_str());
853}
854
855void Beefy::OutputDebugStrF(const char* fmt ...)
856{

Callers

nothing calls this directly

Calls 4

SubstringMethod · 0.80
BfpOutput_DebugStringFunction · 0.50
lengthMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected