1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/* freopen_s( FILE **, const char *, const char *, FILE * )
This file is part of the Public Domain C Library (PDCLib).
Permission is granted to use, modify, and / or redistribute at will.
*/
#define __STDC_WANT_LIB_EXT1__ 1
#include <stdio.h>
#include <stdlib.h>
#ifndef REGTEST
_PDCLIB_PUBLIC errno_t freopen_s( FILE * _PDCLIB_restrict * _PDCLIB_restrict newstreamptr, const char * _PDCLIB_restrict filename, const char * _PDCLIB_restrict mode, FILE * _PDCLIB_restrict stream )
{
if ( newstreamptr == NULL || mode == NULL || stream == NULL )
{
if ( newstreamptr != NULL )
{
*newstreamptr = NULL;
}
_PDCLIB_constraint_handler( _PDCLIB_CONSTRAINT_VIOLATION( _PDCLIB_EINVAL ) );
return _PDCLIB_EINVAL;
}
if ( ( *newstreamptr = freopen( filename, mode, stream ) ) == NULL )
{
return *_PDCLIB_errno_func();
}
return 0;
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
#if ! defined( REGTEST ) || defined( __STDC_LIB_EXT1__ )
static int HANDLER_CALLS = 0;
static void test_handler( const char * _PDCLIB_restrict msg, void * _PDCLIB_restrict ptr, errno_t error )
{
++HANDLER_CALLS;
}
#endif
int main( void )
{
#if ! defined( REGTEST ) || defined( __STDC_LIB_EXT1__ )
FILE * fin;
FILE * fout;
FILE * dummy;
set_constraint_handler_s( test_handler );
TESTCASE( ( fin = fopen( testfile1, "wb+" ) ) != NULL );
TESTCASE( fputc( 'x', fin ) == 'x' );
TESTCASE( fclose( fin ) == 0 );
TESTCASE( freopen_s( &fin, testfile1, "rb", stdin ) == 0 );
TESTCASE( getchar() == 'x' );
TESTCASE( freopen_s( &fout, testfile2, "wb+", stdout ) == 0 );
TESTCASE( putchar( 'x' ) == 'x' );
rewind( fout );
TESTCASE( fgetc( fout ) == 'x' );
dummy = fin;
TESTCASE( freopen_s( &dummy, testfile1, "rb", NULL ) != 0 );
dummy = fin;
TESTCASE( freopen_s( &dummy, testfile1, NULL, stdin ) != 0 );
TESTCASE( freopen_s( NULL, testfile1, "rb", fin ) != 0 );
TESTCASE( fclose( fin ) == 0 );
TESTCASE( fclose( fout ) == 0 );
TESTCASE( remove( testfile1 ) == 0 );
TESTCASE( remove( testfile2 ) == 0 );
TESTCASE( HANDLER_CALLS == 3 );
#else
TESTCASE( NO_TESTDRIVER );
#endif
return TEST_RESULTS;
}
#endif
|