MCPcopy Create free account
hub / github.com/ClassiCube/ClassiCube / String_Format2

Function String_Format2

src/String.c:427–429  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

425 String_Format4(str, format, a1, NULL, NULL, NULL);
426}
427void String_Format2(cc_string* str, const char* format, const void* a1, const void* a2) {
428 String_Format4(str, format, a1, a2, NULL, NULL);
429}
430void String_Format3(cc_string* str, const char* format, const void* a1, const void* a2, const void* a3) {
431 String_Format4(str, format, a1, a2, a3, NULL);
432}

Callers 15

GLBackend_InitFunction · 0.85
UnhandledFilterFunction · 0.85
Directory_EnumCoreFunction · 0.85
Directory_EnumCoreFunction · 0.85
HttpClient_SerialiseFunction · 0.85
Http_AddHeaderFunction · 0.85
Logger_FormatWarnFunction · 0.85
Logger_DynamicLibWarnFunction · 0.85
PrintFrameFunction · 0.85
DumpFrameFunction · 0.85
PlayersColumn_DrawFunction · 0.85
LTable_FormatUptimeFunction · 0.85

Calls 1

String_Format4Function · 0.85

Tested by

no test coverage detected