X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffscanf.c;h=f45db49dcbc2954cf585ec801dd63601afd52810;hb=803677793989ca36f18526f641571dec83f103a9;hp=39962573100444c39e1d3efeb1875043ddf46dcd;hpb=12e17136786afb1775c9dc946cbe41f5e230c24a;p=pdclib.old diff --git a/functions/stdio/fscanf.c b/functions/stdio/fscanf.c index 3996257..f45db49 100644 --- a/functions/stdio/fscanf.c +++ b/functions/stdio/fscanf.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* fscanf( FILE *, const char *, ... ) This file is part of the Public Domain C Library (PDCLib). @@ -15,9 +13,12 @@ int fscanf( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, ... ) { + int rc; va_list ap; va_start( ap, format ); - return vfscanf( stream, format, ap ); + rc = vfscanf( stream, format, ap ); + va_end( ap ); + return rc; } #endif @@ -27,6 +28,8 @@ int fscanf( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format int main( void ) { + /* FILE * fp = fopen( "functions/stdio/testfile.txt", "rb" ); */ + TESTCASE( NO_TESTDRIVER ); return TEST_RESULTS; }