MCPcopy Create free account
hub / github.com/adventuregamestudio/ags / ScriptVSprintf__

Function ScriptVSprintf__

Engine/test/scsprintf_test.cpp:31–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31size_t ScriptVSprintf__(char *buffer, size_t buf_length, const char *format, ...)
32{
33 va_list args;
34 va_start(args, format);
35 size_t res = ScriptVSprintf(buffer, buf_length, format, args);
36 va_end(args);
37 return res;
38}
39
40TEST(ScSprintf, ScSprintf) {
41 const int argi = 123;

Callers 1

TESTFunction · 0.85

Calls 1

ScriptVSprintfFunction · 0.85

Tested by

no test coverage detected