ReactOS 0.4.16-dev-1946-g52006dd
_vscprintf.c File Reference
#include <apitest.h>
#include <stdio.h>
#include <tchar.h>
#include <errno.h>
Include dependency graph for _vscprintf.c:

Go to the source code of this file.

Macros

#define _vscprintf   p_vscprintf
 

Typedefs

typedef int(__cdeclPFN_vscprintf) (const char *format, va_list argptr)
 

Functions

static BOOL Init (void)
 
static void call_varargs (int expected_ret, LPCSTR formatString,...)
 
 START_TEST (_vscprintf)
 

Variables

static PFN_vscprintf p_vscprintf
 

Macro Definition Documentation

◆ _vscprintf

#define _vscprintf   p_vscprintf

Definition at line 25 of file _vscprintf.c.

Typedef Documentation

◆ PFN_vscprintf

typedef int(__cdecl * PFN_vscprintf) (const char *format, va_list argptr)

Definition at line 15 of file _vscprintf.c.

Function Documentation

◆ call_varargs()

static void call_varargs ( int  expected_ret,
LPCSTR  formatString,
  ... 
)
static

Definition at line 29 of file _vscprintf.c.

30{
32 int ret;
33 /* Test the basic functionality */
34 va_start(args, formatString);
35 ret = _vscprintf(formatString, args);
36 va_end(args);
37 ok(expected_ret == ret, "Test failed: expected %i, got %i.\n", expected_ret, ret);
38}
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
return ret
Definition: mutex.c:146
#define _vscprintf
Definition: _vscprintf.c:25
#define args
Definition: format.c:66
Definition: match.c:390

Referenced by START_TEST().

◆ Init()

static BOOL Init ( void  )
static

Definition at line 18 of file _vscprintf.c.

19{
22 ok(p_vscprintf != NULL, "Failed to load _vscprintf from %s\n", TEST_DLL_NAME);
23 return (p_vscprintf != NULL);
24}
#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
int(__cdecl * PFN_vscprintf)(const char *format, va_list argptr)
Definition: _vscprintf.c:15
static PFN_vscprintf p_vscprintf
Definition: _vscprintf.c:16
#define TEST_DLL_NAME
Definition: wsprintf.c:3
static PVOID hdll
Definition: shimdbg.c:126

Referenced by START_TEST().

◆ START_TEST()

START_TEST ( _vscprintf  )

Definition at line 40 of file _vscprintf.c.

41{
42#ifndef TEST_STATIC_CRT
43 if (!Init())
44 {
45 skip("Skipping tests, because _vscprintf is not available\n");
46 return;
47 }
48#endif
49
50 /* Here you can mix wide and ANSI strings */
51 call_varargs(12, "%S world!", L"hello");
52 call_varargs(12, "%s world!", "hello");
53 call_varargs(11, "%u cookies", 100);
54 /* Do not test NULL argument. That is verified to SEGV on a */
55 /* release-build with VC10 and MS' msvcrt. */
56}
#define skip(...)
Definition: atltest.h:64
#define L(x)
Definition: resources.c:13
static BOOL Init(void)
Definition: _vscprintf.c:18
static void call_varargs(int expected_ret, LPCSTR formatString,...)
Definition: _vscprintf.c:29

Variable Documentation

◆ p_vscprintf

PFN_vscprintf p_vscprintf
static

Definition at line 16 of file _vscprintf.c.

Referenced by Init().