ReactOS
0.4.16-dev-2104-gb84fa49
fwprintf_s.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/fwprintf_s.c
5
* PURPOSE: Implementation of fwprintf_s
6
* PROGRAMMER: Samuel Serapión
7
*/
8
9
#define MINGW_HAS_SECURE_API 1
10
11
#include <stdio.h>
12
#include <stdarg.h>
13
14
int
15
__cdecl
16
fwprintf_s
(
FILE
*
file
,
const
wchar_t
*
format
, ...)
17
{
18
va_list
valist
;
19
int
res
;
20
va_start
(
valist
,
format
);
21
res
=
vfwprintf_s
(
file
,
format
,
valist
);
22
va_end
(
valist
);
23
return
res
;
24
}
vfwprintf_s
int CDECL vfwprintf_s(FILE *file, const wchar_t *format, va_list valist)
Definition:
file.c:5373
__cdecl
#define __cdecl
Definition:
corecrt.h:121
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
fwprintf_s
int __cdecl fwprintf_s(FILE *file, const wchar_t *format,...)
Definition:
fwprintf_s.c:16
res
GLuint res
Definition:
glext.h:9613
valist
static va_list valist
Definition:
printf.c:46
_iobuf
Definition:
corecrt_wstdio.h:27
file
Definition:
fci.c:127
format
Definition:
format.c:58
sdk
lib
crt
printf
fwprintf_s.c
Generated on Tue Jan 6 2026 06:19:13 for ReactOS by
1.9.6