xref: /reactos/sdk/lib/crt/printf/_cwprintf.c (revision 40462c92)
1 /*
2  * COPYRIGHT:       GNU GPL, see COPYING in the top level directory
3  * PROJECT:         ReactOS crt library
4  * FILE:            lib/sdk/crt/printf/_cwprintf.c
5  * PURPOSE:         Implementation of _cwprintf
6  * PROGRAMMER:      Samuel Serapi�n
7  */
8 
9 #include <conio.h>
10 #include <stdarg.h>
11 
12 int
13 __cdecl
14 _cwprintf(const wchar_t* format, ...)
15 {
16   int retval;
17   va_list valist;
18 
19   va_start( valist, format );
20   retval = _vcwprintf(format, valist);
21   va_end(valist);
22 
23   return retval;
24 }
25