ReactOS
0.4.16-dev-329-g9223134
fprintf.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/fprintf.c
5
* PURPOSE: Implementation of fprintf
6
* PROGRAMMER: Timo Kreuzer
7
*/
8
9
#include <stdio.h>
10
#include <stdarg.h>
11
12
int
13
__cdecl
14
fprintf
(
FILE
*
file
,
const
char
*
format
, ...)
15
{
16
va_list
argptr;
17
int
result
;
18
19
va_start
(argptr,
format
);
20
result
=
vfprintf
(
file
,
format
, argptr);
21
va_end
(argptr);
22
return
result
;
23
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
va_list
char * va_list
Definition:
acmsvcex.h:78
va_end
#define va_end(ap)
Definition:
acmsvcex.h:90
va_start
#define va_start(ap, A)
Definition:
acmsvcex.h:91
fprintf
int __cdecl fprintf(FILE *file, const char *format,...)
Definition:
fprintf.c:14
result
GLuint64EXT * result
Definition:
glext.h:11304
vfprintf
_Check_return_opt_ _CRTIMP int __cdecl vfprintf(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
_iobuf
Definition:
mbstring.h:19
file
Definition:
fci.c:127
format
Definition:
format.c:58
sdk
lib
crt
printf
fprintf.c
Generated on Sat Dec 7 2024 06:13:28 for ReactOS by
1.9.6