X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=18b7b3ae4df8e2cf5646bb87fc88fc20bedc8eba;hb=10f020f1a39804bbef8cd1cf35ef7c9a8e75c7d6;hp=04020d94645a1f52dee6f3bd88da52c0e91f4850;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index 04020d9..18b7b3a 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -1,8 +1,63 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- - -FILE * fopen( const char * restrict filename, const char * restrict mode ) { /* TODO */ }; +/* $Id$ */ + +/* fopen( const char *, const char * ) + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#include +#include + +#ifndef REGTEST +#include <_PDCLIB_glue.h> +#include +#include + +extern struct _PDCLIB_file_t * _PDCLIB_filelist; + +FILE * fopen( const char * _PDCLIB_restrict filename, + const char * _PDCLIB_restrict mode ) +{ + int imode = _PDCLIB_filemode( mode ); + _PDCLIB_fd_t fd = _PDCLIB_open( filename, imode ); + if(fd == _PDCLIB_NOHANDLE) { + return NULL; + } + + FILE * f = _PDCLIB_fdopen( fd, imode, filename ); + if(!f) { + int saveErrno = errno; + _PDCLIB_close( fd ); + errno = saveErrno; + } + return f; +} + +#endif + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main( void ) +{ + /* Some of the tests are not executed for regression tests, as the libc on + my system is at once less forgiving (segfaults on mode NULL) and more + forgiving (accepts undefined modes). + */ + 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 ); /* Undefined mode */ + TESTCASE_NOREG( fopen( testfile, "wr" ) == NULL ); /* Undefined mode */ + TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); + TESTCASE( fclose( fh ) == 0 ); + TESTCASE( remove( testfile ) == 0 ); + return TEST_RESULTS; +} + +#endif