[CMAKE]
[reactos.git] / lib / sdk / crt / printf / vfwprintf.c
1 /*
2 * COPYRIGHT: GNU GPL, see COPYING in the top level directory
3 * PROJECT: ReactOS crt library
4 * FILE: lib/sdk/crt/printf/vfwprintf.c
5 * PURPOSE: Implementation of vfwprintf
6 * PROGRAMMER: Timo Kreuzer
7 */
8
9 #include <stdio.h>
10 #include <stdarg.h>
11
12 int _cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr);
13
14 int
15 __cdecl
16 vfwprintf(FILE* file, const wchar_t *format, va_list argptr)
17 {
18 return wstreamout(file, format, argptr);
19 }
20