]> pd.if.org Git - pdclib/blob - functions/stdio/printf.c
Comment cleanups.
[pdclib] / functions / stdio / printf.c
1 /* printf( const char *, ... )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdio.h>
8 #include <stdarg.h>
9
10 #ifndef REGTEST
11
12 int printf( const char * _PDCLIB_restrict format, ... )
13 {
14     int rc;
15     va_list ap;
16     va_start( ap, format );
17     rc = vfprintf( stdout, format, ap );
18     va_end( ap );
19     return rc;
20 }
21
22 #endif
23
24 #ifdef TEST
25 #define _PDCLIB_FILEID "stdio/printf.c"
26 #define _PDCLIB_FILEIO
27
28 #include <_PDCLIB_test.h>
29
30 #define testprintf( stream, format, ... ) printf( format, __VA_ARGS__ )
31
32 int main( void )
33 {
34     FILE * target;
35     TESTCASE( ( target = freopen( testfile, "wb+", stdout ) ) != NULL );
36 #include "printf_testcases.h"
37     TESTCASE( fclose( target ) == 0 );
38     TESTCASE( remove( testfile ) == 0 );
39     return TEST_RESULTS;
40 }
41
42 #endif