| 746 | } |
| 747 | |
| 748 | static 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 | |
| 758 | TEST(SimpleString, PlatformSpecificSprintf_fits) |
| 759 | { |
no test coverage detected