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

Function get_swprintf

system/lib/libcxx/src/string.cpp:336–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

334typedef int (*wide_printf)(wchar_t* __restrict, size_t, const wchar_t* __restrict, ...);
335
336inline wide_printf get_swprintf() {
337# ifndef _LIBCPP_MSVCRT
338 return swprintf;
339# else
340 return static_cast<int(__cdecl*)(wchar_t* __restrict, size_t, const wchar_t* __restrict, ...)>(_snwprintf);
341# endif
342}
343#endif // _LIBCPP_HAS_WIDE_CHARACTERS
344
345template <typename S, typename V>

Callers 1

to_wstringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected