/* * COPYRIGHT: GNU GPL, see COPYING in the top level directory * PROJECT: ReactOS crt library * FILE: lib/sdk/crt/printf/fwprintf.c * PURPOSE: Implementation of fwprintf * PROGRAMMER: Timo Kreuzer */ #include #include int __cdecl fwprintf(FILE* file, const wchar_t *format, ...) { va_list argptr; int result; va_start(argptr, format); result = vfwprintf(file, format, argptr); va_end(argptr); return result; }