master
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl vswprintf(wchar_t * __restrict__ _Dest,size_t _Count,const wchar_t * __restrict__ _Format,va_list _Args)
12{
13 int __ret;
14 /*
15 * __stdio_common_vswprintf() for case _Dest == NULL and _Count == 0 and
16 * without _CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR option, is
17 * executed in "standard snprintf behavior" and returns number of (wide)
18 * chars required to allocate. For all other cases it is executed in a way
19 * that returns negative value on error. But C95+ compliant vswprintf() for
20 * case _Count == 0 returns negative value, so handle this case specially.
21 */
22 if (_Dest == NULL && _Count == 0)
23 return -1;
24 __ret = __stdio_common_vswprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, _Dest, _Count, _Format, NULL, _Args);
25 return __ret < 0 ? -1 : __ret;
26}