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

Function PrintBigWide

test/core/test_wprintf.cpp:32–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32void PrintBigWide ( const wchar_t * format, ... )
33{
34 wchar_t buffer[MAX_CHARS_BIG] = { 0 };
35 va_list args;
36 va_start ( args, format );
37 int ret = vswprintf ( buffer, MAX_CHARS_BIG-1, format, args );
38 va_end ( args );
39 wprintf(L"PrintBigWide wrote %d wchars:\n", ret);
40 wprintf(buffer);
41}
42
43int main ()
44{

Callers 1

mainFunction · 0.85

Calls 2

vswprintfFunction · 0.85
wprintfFunction · 0.85

Tested by

no test coverage detected