2011-12-16 15:44:37 +00:00
|
|
|
|
/*
|
|
|
|
|
* COPYRIGHT: GNU GPL, see COPYING in the top level directory
|
|
|
|
|
* PROJECT: ReactOS crt library
|
2015-09-19 13:50:57 +00:00
|
|
|
|
* FILE: lib/sdk/crt/printf/wprintf_s.c
|
2011-12-16 15:44:37 +00:00
|
|
|
|
* PURPOSE: Implementation of wprintf
|
|
|
|
|
* PROGRAMMER: Samuel Serapi<EFBFBD>n
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define MINGW_HAS_SECURE_API 1
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
|
|
int
|
2013-09-14 10:28:30 +00:00
|
|
|
|
__cdecl
|
2011-12-16 15:44:37 +00:00
|
|
|
|
wprintf_s(const wchar_t *format, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list argptr;
|
|
|
|
|
int res;
|
|
|
|
|
va_start(argptr, format);
|
|
|
|
|
res = vwprintf_s(format, argptr);
|
|
|
|
|
va_end(argptr);
|
|
|
|
|
return res;
|
|
|
|
|
}
|