ReactOS 0.4.16-dev-2104-gb84fa49
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}
int CDECL vfprintf(FILE *file, const char *format, va_list valist)
Definition: file.c:5349
#define __cdecl
Definition: corecrt.h:121
#define stdout
char * va_list
Definition: vadefs.h:50
Definition: format.c:58
int __cdecl vprintf(const char *format, va_list argptr)
Definition: vprintf.c:14