X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffscanf.c;h=b560448f14e49a49ff6fd7cd6d17ec3cca3da128;hb=f56f5d756f412e9c7058e2af4e36bc1de21dd642;hp=bc5bebfe523e4192278a6667e814a87c8f37c54f;hpb=8fdcadf9530faa3267f9a41375ff1760c991f027;p=pdclib diff --git a/functions/stdio/fscanf.c b/functions/stdio/fscanf.c index bc5bebf..b560448 100644 --- a/functions/stdio/fscanf.c +++ b/functions/stdio/fscanf.c @@ -26,9 +26,13 @@ int fscanf( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format #ifdef TEST #include <_PDCLIB_test.h> +#include "scan_test.h" + int main( void ) { - TESTCASE( NO_TESTDRIVER ); +#define SCANFUNC( source, format, ... ) fscanf( source, format, __VA_ARGS__ ) +#include "fscan_sources.incl" +#include "scanf_testcases.incl" return TEST_RESULTS; }