ReactOS
0.4.16-dev-109-gf4cb10f
_cwprintf.c
Go to the documentation of this file.
1
/*
2
* COPYRIGHT: GNU GPL, see COPYING in the top level directory
3
* PROJECT: ReactOS crt library
4
* FILE: lib/sdk/crt/printf/_cwprintf.c
5
* PURPOSE: Implementation of _cwprintf
6
* PROGRAMMER: Samuel Serapión
7
*/
8
9
#include <conio.h>
10
#include <stdarg.h>
11
12
int
13
__cdecl
14
_cwprintf
(
const
wchar_t
*
format
, ...)
15
{
16
int
retval;
17
va_list
valist
;
18
19
va_start
(
valist
,
format
);
20
retval =
_vcwprintf
(
format
,
valist
);
21
va_end
(
valist
);
22
23
return
retval;
24
}
_cwprintf
int __cdecl _cwprintf(const wchar_t *format,...)
Definition:
_cwprintf.c:14
__cdecl
#define __cdecl
Definition:
accygwin.h:79
va_list
char * va_list
Definition:
acmsvcex.h:78
va_end
#define va_end(ap)
Definition:
acmsvcex.h:90
va_start
#define va_start(ap, A)
Definition:
acmsvcex.h:91
valist
static __ms_va_list valist
Definition:
printf.c:66
_vcwprintf
_Check_return_opt_ _CRTIMP int __cdecl _vcwprintf(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
format
Definition:
format.c:58
sdk
lib
crt
printf
_cwprintf.c
Generated on Wed Oct 9 2024 06:19:20 for ReactOS by
1.9.6