MCPcopy Create free account
hub / github.com/alliedmodders/sourcemod / Format

Method Format

core/sourcemod.cpp:689–699  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

687}
688
689size_t SourceModBase::Format(char *buffer, size_t maxlength, const char *fmt, ...)
690{
691 size_t len;
692 va_list ap;
693
694 va_start(ap, fmt);
695 len = FormatArgs(buffer, maxlength, fmt, ap);
696 va_end(ap);
697
698 return len;
699}
700
701size_t SourceModBase::FormatArgs(char *buffer,
702 size_t maxlength,

Callers 15

LoadMethod · 0.80
BuildVoteLeadersMethod · 0.80
FindMapMethod · 0.80
LoadMethod · 0.80
RunThreadPartMethod · 0.80
RunThinkPartMethod · 0.80
TConnectOpMethod · 0.80
RunThinkPartMethod · 0.80
ConnectToDbAsyncFunction · 0.80
SQL_ConnectCustomFunction · 0.80
GetMapCycleFilePathMethod · 0.80
AutoExecConfigFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected