MCPcopy Create free account
hub / github.com/NoMercy-ac/NoMercy / CreateFormatString

Function CreateFormatString

Source/Client/NM_Engine/StackTrace.cpp:42–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40#include <lazy_importer.hpp>
41
42inline std::string CreateFormatString(const char* c_szFormat, ...)
43{
44 char pTmpString[8096] = { 0 };
45
46 va_list vaArgList;
47 va_start(vaArgList, c_szFormat);
48 vsprintf(pTmpString, c_szFormat, vaArgList);
49 va_end(vaArgList);
50
51 return pTmpString;
52}
53
54
55CStackTrace::CStackTrace()

Callers 1

get_stack_frames_textMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected