Reworked scanf() testing. General cleanups.
[fw/pdclib] / functions / stdio / sscanf.c
index 368ae53a7f18f19c6436df0dcec44bcd395b72ef..dc343b863170646edaaa74ad7870cc7bd160f6f4 100644 (file)
 
 int sscanf( const char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ... )
 {
+    int rc;
     va_list ap;
     va_start( ap, format );
-    return vsscanf( s, format, ap );
+    rc = vsscanf( s, format, ap );
+    va_end( ap );
+    return rc;
 }
 
 #endif
 
 #ifdef TEST
+#define _PDCLIB_FILEID "stdio/sscanf.c"
+#define _PDCLIB_STRINGIO
+
 #include <_PDCLIB_test.h>
 
-int main( void )
+#define testscanf( s, format, ... ) sscanf( s, format, __VA_ARGS__ )
+
+int main()
 {
-    TESTCASE( NO_TESTDRIVER );
+    char source[100];
+#include "scanf_testcases.h"
     return TEST_RESULTS;
 }
 
 #endif
+