MCPcopy Create free account
hub / github.com/cpputest/cpputest / WrappedUpVSNPrintf

Function WrappedUpVSNPrintf

tests/CppUTest/SimpleStringTest.cpp:748–756  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

746}
747
748static int WrappedUpVSNPrintf(char* buf, size_t n, const char* format, ...)
749{
750 va_list arguments;
751 va_start(arguments, format);
752
753 int result = PlatformSpecificVSNprintf(buf, n, format, arguments);
754 va_end(arguments);
755 return result;
756}
757
758TEST(SimpleString, PlatformSpecificSprintf_fits)
759{

Callers 1

TESTFunction · 0.85

Calls 1

Tested by

no test coverage detected