MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / format

Function format

plugins/plugin_utils/plugin_utils.cpp:230–238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228}
229
230std::string format(const char* fmt, ...) {
231 va_list args;
232 va_start(args, fmt);
233 char temp[2048];
234 vsprintf(temp, fmt, args);
235 std::string result = temp;
236 va_end(args);
237 return result;
238}
239
240std::vector<std::string> tokenize(const std::string& in, const std::string& delims,
241 const int maxTokens, const bool useQuotes, size_t offset) {

Callers 15

registerVDirMethod · 0.70
getBaseURLMethod · 0.70
setupAuthMethod · 0.70
keyCallbackMethod · 0.70
processLoopMethod · 0.70
processIFMethod · 0.70
appendTimeFunction · 0.70
keyCallbackMethod · 0.50
vector_dumpFunction · 0.50
processMethod · 0.50
playerRejectedMethod · 0.50
handleMethod · 0.50

Calls

no outgoing calls

Tested by 1

handleRequestMethod · 0.40