ReactOS 0.4.16-dev-2104-gb84fa49
wprintf_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/wprintf_s.c
5 * PURPOSE: Implementation of wprintf
6 * PROGRAMMER: Samuel Serapión
7 */
8
9#define MINGW_HAS_SECURE_API 1
10
11#include <stdio.h>
12#include <stdarg.h>
13
14int
16wprintf_s(const wchar_t *format, ...)
17{
18 va_list argptr;
19 int res;
20 va_start(argptr, format);
21 res = vwprintf_s(format, argptr);
22 va_end(argptr);
23 return res;
24}
int CDECL vwprintf_s(const wchar_t *format, va_list valist)
Definition: file.c:5541
#define __cdecl
Definition: corecrt.h:121
#define va_end(v)
Definition: stdarg.h:28
#define va_start(v, l)
Definition: stdarg.h:26
char * va_list
Definition: vadefs.h:50
GLuint res
Definition: glext.h:9613
Definition: format.c:58
int __cdecl wprintf_s(const wchar_t *format,...)
Definition: wprintf_s.c:16