3 /* fprintf( FILE *, const char *, ... )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
14 int fprintf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, ... )
18 va_start( ap, format );
19 rc = vfprintf( stream, format, ap );
27 #define _PDCLIB_FILEID "stdio/fprintf.c"
28 #define _PDCLIB_FILEIO
30 #include <_PDCLIB_test.h>
32 #define testprintf( stream, format, ... ) fprintf( stream, format, __VA_ARGS__ )
37 TESTCASE( ( target = tmpfile() ) != NULL );
38 #include "printf_testcases.h"
39 TESTCASE( fclose( target ) == 0 );