]> pd.if.org Git - pdclib/blob - functions/stdio/printf.c
Tyndur tests
[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 #include <stdint.h>
28 #include <stddef.h>
29
30 #include "_PDCLIB_test.h"
31
32 #define testprintf( stream, ... ) printf( __VA_ARGS__ )
33
34 int main( void )
35 {
36     FILE * target;
37     TESTCASE( ( target = freopen( testfile, "wb+", stdout ) ) != NULL );
38 #include "printf_testcases.h"
39     TESTCASE( fclose( target ) == 0 );
40     TESTCASE( remove( testfile ) == 0 );
41     return TEST_RESULTS;
42 }
43
44 #endif