ReactOS
0.4.16-dev-2110-ge3521eb
_scwprintf.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/_scwprintf.c
5
* PURPOSE: Implementation of _scwprintf
6
*/
7
8
#include <stdio.h>
9
#include <stdarg.h>
10
11
int
12
__cdecl
13
_scwprintf
(
14
const
wchar_t
*
format
,
15
...)
16
{
17
int
len
;
18
va_list
args
;
19
20
va_start
(
args
,
format
);
21
len
=
_vscwprintf
(
format
,
args
);
22
va_end
(
args
);
23
24
return
len
;
25
}
_scwprintf
int __cdecl _scwprintf(const wchar_t *format,...)
Definition:
_scwprintf.c:13
__cdecl
#define __cdecl
Definition:
corecrt.h:121
_vscwprintf
_ACRTIMP int __cdecl _vscwprintf(const wchar_t *, va_list)
Definition:
wcs.c:1782
va_end
#define va_end(v)
Definition:
stdarg.h:28
va_start
#define va_start(v, l)
Definition:
stdarg.h:26
va_list
char * va_list
Definition:
vadefs.h:50
len
GLenum GLsizei len
Definition:
glext.h:6722
args
#define args
Definition:
format.c:66
args
Definition:
match.c:390
format
Definition:
format.c:58
sdk
lib
crt
printf
_scwprintf.c
Generated on Thu Jan 8 2026 06:15:25 for ReactOS by
1.9.6