MCPcopy Create free account
hub / github.com/BohemiaInteractive/CWR / Format

Function Format

engine/Poseidon/Foundation/Strings/StrFormat.cpp:17–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15}
16
17RString Format(const char* format, ...)
18{
19 char buf[1024];
20 va_list va;
21 va_start(va, format);
22 vsnprintf(buf, sizeof(buf) - 1, format, va);
23 buf[sizeof(buf) - 1] = 0;
24 va_end(va);
25 return buf;
26}
27
28} // namespace Poseidon::Foundation

Callers 15

LoadTaggedMethod · 0.50
FormatMissionParamFunction · 0.50
GetIdentityTextFunction · 0.50
SendMessagesMethod · 0.50
OnMessageMethod · 0.50
OnNetworkCommandMethod · 0.50
GetStatisticsMethod · 0.50
ReceiveSystemMessagesMethod · 0.50
NetworkIdToNetIdFunction · 0.50
KickOffMethod · 0.50

Calls

no outgoing calls

Tested by 2

TriOpenJoinRequirementsFunction · 0.40