3 /* sscanf( const char *, const char *, ... )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
14 int sscanf( const char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ... )
18 va_start( ap, format );
19 rc = vsscanf( s, format, ap );
27 #define _PDCLIB_FILEID "stdio/sscanf.c"
28 #define _PDCLIB_STRINGIO
30 #include <_PDCLIB_test.h>
32 #define testscanf( s, format, ... ) sscanf( s, format, __VA_ARGS__ )
37 #include "scanf_testcases.h"