ReactOS 0.4.16-dev-1946-g52006dd
_vscwprintf.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPL - See COPYING in the top level directory
4 * PURPOSE: Test for _vscprintf
5 */
6
7#include <apitest.h>
8
9#include <stdio.h>
10#include <tchar.h>
11#include <errno.h>
12
13#ifndef TEST_STATIC_CRT
14
15typedef int (__cdecl *PFN_vscwprintf)(const char *format, va_list argptr);
17
18static BOOL Init(void)
19{
22 ok(p_vscwprintf != NULL, "Failed to load _vscwprintf from %s\n", TEST_DLL_NAME);
23 return (p_vscwprintf != NULL);
24}
25#define _vscprintf p_vscwprintf
26
27#endif // !TEST_STATIC_CRT
28
29static void call_varargs(int expected_ret, LPCWSTR formatString, ...)
30{
32 int ret;
33 /* Test the basic functionality */
34 va_start(args, formatString);
35 ret = _vscwprintf(formatString, args);
36 va_end(args);
37 ok(expected_ret == ret, "expected %i, got %i.\n", expected_ret, ret);
38}
39
41{
42#ifndef TEST_STATIC_CRT
43 if (!Init())
44 {
45 skip("Skipping tests, because _vscwprintf is not available\n");
46 return;
47 }
48#endif
49
50 /* Lesson of the day: don't mix wide and ansi char */
51 /* Lesson of the week: don't ignore the lesson of the day */
52 call_varargs(12, L"%hs world!", "hello");
53 call_varargs(12, L"%s world!", L"hello");
54 call_varargs(17, L"Jack ate %u pies", 100);
55 /* Do not test NULL argument. That is verified to SEGV on a */
56 /* release-build with VC10 and MS' msvcrt. */
57}
#define __cdecl
Definition: accygwin.h:79
char * va_list
Definition: acmsvcex.h:78
#define va_end(ap)
Definition: acmsvcex.h:90
#define va_start(ap, A)
Definition: acmsvcex.h:91
#define ok(value,...)
Definition: atltest.h:57
#define skip(...)
Definition: atltest.h:64
#define START_TEST(x)
Definition: atltest.h:75
#define NULL
Definition: types.h:112
#define GetProcAddress(x, y)
Definition: compat.h:753
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
Definition: typeof.h:31
return ret
Definition: mutex.c:146
#define L(x)
Definition: resources.c:13
unsigned int BOOL
Definition: ntddk_ex.h:94
_Check_return_ _CRTIMP int __cdecl _vscwprintf(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
static BOOL Init(void)
Definition: _vscwprintf.c:18
int(__cdecl * PFN_vscwprintf)(const char *format, va_list argptr)
Definition: _vscwprintf.c:15
static PFN_vscwprintf p_vscwprintf
Definition: _vscwprintf.c:16
static void call_varargs(int expected_ret, LPCWSTR formatString,...)
Definition: _vscwprintf.c:29
#define TEST_DLL_NAME
Definition: wsprintf.c:3
#define args
Definition: format.c:66
static PVOID hdll
Definition: shimdbg.c:126
Definition: match.c:390
Definition: format.c:58
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185