ReactOS 0.4.15-dev-7788-g1ad9096
wsprintf.c File Reference
#include <stdarg.h>
#include "wine/test.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "winnls.h"
Include dependency graph for wsprintf.c:

Go to the source code of this file.

Functions

static void wsprintfATest (void)
 
static void wsprintfWTest (void)
 
static void CharUpperTest (void)
 
static void CharLowerTest (void)
 
 START_TEST (wsprintf)
 

Variables

struct {
   const char *   fmt
 
   ULONGLONG   value
 
   const char *   res
 
i64_formats []
 

Function Documentation

◆ CharLowerTest()

static void CharLowerTest ( void  )
static

Definition at line 131 of file wsprintf.c.

132{
133 INT_PTR i, out;
134 BOOL failed = FALSE;
135
136 for (i=0;i<256;i++)
137 {
139 if ((out >> 16) != 0)
140 {
141 failed = TRUE;
142 break;
143 }
144 }
145 ok(!failed,"CharLower failed - 16bit input (0x%0lx) returned 32bit result (0x%0lx)\n",i,out);
146}
#define ok(value,...)
Definition: atltest.h:57
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
unsigned int BOOL
Definition: ntddk_ex.h:94
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
static FILE * out
Definition: regtests2xml.c:44
int32_t INT_PTR
Definition: typedefs.h:64
LPSTR WINAPI CharLowerA(_Inout_ LPSTR)
char * LPSTR
Definition: xmlstorage.h:182

Referenced by START_TEST().

◆ CharUpperTest()

static void CharUpperTest ( void  )
static

Definition at line 114 of file wsprintf.c.

115{
116 INT_PTR i, out;
117 BOOL failed = FALSE;
118
119 for (i=0;i<256;i++)
120 {
122 if ((out >> 16) != 0)
123 {
124 failed = TRUE;
125 break;
126 }
127 }
128 ok(!failed,"CharUpper failed - 16bit input (0x%0lx) returned 32bit result (0x%0lx)\n",i,out);
129}
LPSTR WINAPI CharUpperA(_Inout_ LPSTR)

Referenced by START_TEST().

◆ START_TEST()

START_TEST ( wsprintf  )

Definition at line 149 of file wsprintf.c.

150{
155}
static void wsprintfATest(void)
Definition: wsprintf.c:53
static void CharLowerTest(void)
Definition: wsprintf.c:131
static void CharUpperTest(void)
Definition: wsprintf.c:114
static void wsprintfWTest(void)
Definition: wsprintf.c:77

◆ wsprintfATest()

static void wsprintfATest ( void  )
static

Definition at line 53 of file wsprintf.c.

54{
55 char buf[25];
56 unsigned int i;
57 int rc;
58
59 rc=wsprintfA(buf, "%010ld", -1);
60 ok(rc == 10, "wsprintfA length failure: rc=%d error=%d\n",rc,GetLastError());
61 ok((lstrcmpA(buf, "-000000001") == 0),
62 "wsprintfA zero padded negative value failure: buf=[%s]\n",buf);
63 rc = wsprintfA(buf, "%I64X", (ULONGLONG)0);
64 if (rc == 4 && !lstrcmpA(buf, "I64X"))
65 {
66 win_skip( "I64 formats not supported\n" );
67 return;
68 }
69 for (i = 0; i < ARRAY_SIZE(i64_formats); i++)
70 {
72 ok(rc == strlen(i64_formats[i].res), "%u: wsprintfA length failure: rc=%d\n", i, rc);
73 ok(!strcmp(buf, i64_formats[i].res), "%u: wrong result [%s]\n", i, buf);
74 }
75}
int strcmp(const char *String1, const char *String2)
Definition: utclib.c:469
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
#define ARRAY_SIZE(A)
Definition: main.h:33
GLuint res
Definition: glext.h:9613
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
int WINAPI lstrcmpA(LPCSTR lpString1, LPCSTR lpString2)
Definition: lstring.c:18
static const struct @1727 i64_formats[]
#define win_skip
Definition: test.h:160
Definition: dsound.c:943
uint64_t ULONGLONG
Definition: typedefs.h:67
Definition: pdh_main.c:94
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
int WINAPIV wsprintfA(_Out_ LPSTR, _In_ _Printf_format_string_ LPCSTR,...)

Referenced by START_TEST().

◆ wsprintfWTest()

static void wsprintfWTest ( void  )
static

Definition at line 77 of file wsprintf.c.

78{
79 static const WCHAR fmt_010ld[] = {'%','0','1','0','l','d','\0'};
80 static const WCHAR res_010ld[] = {'-','0','0','0','0','0','0','0','0','1', '\0'};
81 static const WCHAR fmt_I64x[] = {'%','I','6','4','x',0};
82 WCHAR buf[25], fmt[25], res[25];
83 unsigned int i;
84 int rc;
85
86 rc=wsprintfW(buf, fmt_010ld, -1);
88 {
89 win_skip("wsprintfW is not implemented\n");
90 return;
91 }
92 ok(rc == 10, "wsPrintfW length failure: rc=%d error=%d\n",rc,GetLastError());
93 ok((lstrcmpW(buf, res_010ld) == 0),
94 "wsprintfW zero padded negative value failure\n");
95 rc = wsprintfW(buf, fmt_I64x, (ULONGLONG)0 );
96 if (rc == 4 && !lstrcmpW(buf, fmt_I64x + 1))
97 {
98 win_skip( "I64 formats not supported\n" );
99 return;
100 }
101 for (i = 0; i < ARRAY_SIZE(i64_formats); i++)
102 {
106 ok(rc == lstrlenW(res), "%u: wsprintfW length failure: rc=%d\n", i, rc);
107 ok(!lstrcmpW(buf, res), "%u: wrong result [%s]\n", i, wine_dbgstr_w(buf));
108 }
109}
#define ERROR_CALL_NOT_IMPLEMENTED
Definition: compat.h:102
#define CP_ACP
Definition: compat.h:109
#define MultiByteToWideChar
Definition: compat.h:110
#define lstrlenW
Definition: compat.h:750
#define wine_dbgstr_w
Definition: kernel32.h:34
int WINAPI lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2)
Definition: lstring.c:170
int WINAPIV wsprintfW(_Out_ LPWSTR, _In_ _Printf_format_string_ LPCWSTR,...)
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by START_TEST().

Variable Documentation

◆ fmt

Definition at line 30 of file wsprintf.c.

◆ 

const struct { ... } i64_formats[]
Initial value:
=
{
{ "%I64X", ((ULONGLONG)0x12345 << 32) | 0x67890a, "123450067890A" },
{ "%I32X", ((ULONGLONG)0x12345 << 32) | 0x67890a, "67890A" },
{ "%I64d", (ULONGLONG)543210 * 1000000, "543210000000" },
{ "%I64X", (LONGLONG)-0x12345, "FFFFFFFFFFFEDCBB" },
{ "%I32x", (LONGLONG)-0x12345, "fffedcbb" },
{ "%I64u", (LONGLONG)-123, "18446744073709551493" },
{ "%Id", (LONGLONG)-12345, "-12345" },
{ "%Ix", ((ULONGLONG)0x12345 << 32) | 0x67890a, "67890a" },
{ "%Ix", (LONGLONG)-0x12345, "fffedcbb" },
{ "%p", (LONGLONG)-0x12345, "FFFEDCBB" },
}
int64_t LONGLONG
Definition: typedefs.h:68

Referenced by wsprintfATest(), and wsprintfWTest().

◆ res

Definition at line 32 of file wsprintf.c.

◆ value

Definition at line 31 of file wsprintf.c.