MCPcopy Create free account
hub / github.com/Warzone2100/warzone2100 / _debug_multiline

Function _debug_multiline

lib/framework/debug.cpp:814–822  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

812#include <sstream>
813
814void _debug_multiline(int line, code_part part, const char *function, const std::string &multilineString)
815{
816 std::stringstream ss(multilineString);
817 std::string to;
818
819 while(std::getline(ss,to,'\n')){
820 _debug(line, part, function, "%s", to.c_str());
821 }
822}
823
824#if defined(__EMSCRIPTEN__)
825

Callers 2

VkRootMethod · 0.85
sound_InitLibraryFunction · 0.85

Calls 1

_debugFunction · 0.85

Tested by

no test coverage detected