xref: /reactos/sdk/lib/crt/printf/_scwprintf.c (revision 5100859e)
1 /*
2  * COPYRIGHT:       GNU GPL, see COPYING in the top level directory
3  * PROJECT:         ReactOS crt library
4  * FILE:            lib/sdk/crt/printf/_scwprintf.c
5  * PURPOSE:         Implementation of _scwprintf
6  */
7 
8 #include <stdio.h>
9 #include <stdarg.h>
10 
11 int
12 __cdecl
13 _scwprintf(
14     const wchar_t *format,
15     ...)
16 {
17     int len;
18     va_list args;
19 
20     va_start(args, format);
21     len = _vscwprintf(format, args);
22     va_end(args);
23 
24     return len;
25 }
26