Switched to tmpfile() where appropriate.
[fw/pdclib] / functions / stdio / fprintf.c
1 /* $Id$ */
2
3 /* fprintf( FILE *, const char *, ... )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #include <stdio.h>
10 #include <stdarg.h>
11
12 #ifndef REGTEST
13
14 int fprintf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, ... )
15 {
16     int rc;
17     va_list ap;
18     va_start( ap, format );
19     rc = vfprintf( stream, format, ap );
20     va_end( ap );
21     return rc;
22 }
23
24 #endif
25
26 #ifdef TEST
27 #define _PDCLIB_FILEID "stdio/fprintf.c"
28 #define FPRINTF_FUNCTION 1
29
30 #include <limits.h>
31 #include <string.h>
32 #include <_PDCLIB_test.h>
33
34 #define testprintf( stream, format, ... ) fprintf( stream, format, __VA_ARGS__ )
35
36 int main( void )
37 {
38     FILE * target;
39     TESTCASE( ( target = tmpfile() ) != NULL );
40 #include "printf_testcases.incl"
41     TESTCASE( fclose( target ) == 0 );
42     return TEST_RESULTS;
43 }
44
45 #endif