#include <stdio.h>
#include <stdlib.h>
#ifndef REGTEST
#include "_PDCLIB_io.h"
#include "_PDCLIB_glue.h"
#include <string.h>
#include <errno.h>
extern FILE * _PDCLIB_filelist;
FILE * fopen( const char * _PDCLIB_restrict filename,
const char * _PDCLIB_restrict mode )
{
int imode = _PDCLIB_filemode( mode );
if( imode == 0 || filename == NULL )
return NULL;
_PDCLIB_fd_t fd;
const _PDCLIB_fileops_t * ops;
if(!_PDCLIB_open( &fd, &ops, filename, imode )) {
return NULL;
}
FILE * f = _PDCLIB_fvopen( fd, ops, imode, filename );
if(!f) {
int saveErrno = errno;
ops->close(fd);
errno = saveErrno;
}
return f;
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
int main( void )
{
FILE * fh;
remove( testfile );
TESTCASE_NOREG( fopen( NULL, NULL ) == NULL );
TESTCASE( fopen( NULL, "w" ) == NULL );
TESTCASE_NOREG( fopen( "", NULL ) == NULL );
TESTCASE( fopen( "", "w" ) == NULL );
TESTCASE( fopen( "foo", "" ) == NULL );
TESTCASE_NOREG( fopen( testfile, "wq" ) == NULL );
TESTCASE_NOREG( fopen( testfile, "wr" ) == NULL );
TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL );
TESTCASE( fclose( fh ) == 0 );
TESTCASE( remove( testfile ) == 0 );
return TEST_RESULTS;
}
#endif