| * This file has no copyright assigned and is placed in the Public Domain. |
| * This file is part of the mingw-w64 runtime package. |
| * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| /* Intentionally not including stdio.h, as it unconditionally defines the |
| * swprintf inline, and it can't be renamed with "#define snwprintf othername" |
| * either, as stdio.h contains "#undef snwprintf". */ |
| int __cdecl __ms_vsnwprintf(wchar_t *buffer, size_t n, const wchar_t *format, va_list arg); |
| int __cdecl snwprintf(wchar_t *buffer, size_t n, const wchar_t *format, ...); |
| int __cdecl snwprintf(wchar_t *buffer, size_t n, const wchar_t *format, ...) |
| va_start(argptr, format); |
| retval = __ms_vsnwprintf(buffer, n, format, argptr); |