MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / vary2

Function vary2

test/core/test_varargs.c:27–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27void vary2(char color, const char *s, ...) {
28 va_list v;
29 va_start(v, s);
30 char d[21];
31 d[0] = color;
32 vsnprintf(d + 1, 20, s, v);
33 puts(d);
34 va_end(v);
35}
36
37void varargs_listoffsets_list_evaluate(int count, va_list ap, int vaIteration) {
38 while (count > 0) {

Callers 1

mainFunction · 0.85

Calls 2

vsnprintfFunction · 0.85
putsFunction · 0.85

Tested by

no test coverage detected