ReactOS 0.4.15-dev-7918-g2a2556c
vprintf.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: GNU GPL, see COPYING in the top level directory
3 * PROJECT: ReactOS crt library
4 * FILE: lib/sdk/crt/printf/vprintf.c
5 * PURPOSE: Implementation of vprintf
6 * PROGRAMMER: Timo Kreuzer
7 */
8
9#include <stdio.h>
10#include <stdarg.h>
11
12int
14vprintf(const char *format, va_list argptr)
15{
16 return vfprintf(stdout, format, argptr);
17}
#define __cdecl
Definition: accygwin.h:79
char * va_list
Definition: acmsvcex.h:78
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: gl.h:1546
#define stdout
Definition: stdio.h:99
_Check_return_opt_ _CRTIMP int __cdecl vfprintf(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
int __cdecl vprintf(const char *format, va_list argptr)
Definition: vprintf.c:14