Files
Timo Kreuzer 5f51f24697 [CRT_APITEST] Improve some tests
This is needed to automatically derive the test name from START_TEST.
2026-05-15 16:50:48 +00:00

11 lines
244 B
C

#define _UNICODE
#include <wchar.h>
typedef int (__cdecl *PFN_sntprintf)(wchar_t *_Dest, size_t _Count, const wchar_t *_Format, ...);
#define str_sntprintf "_snwprintf"
#include "_sntprintf.h"
START_TEST(_snwprintf)
{
Test__sntprintf();
}