1 /* sscanf( const char *, const char *, ... )
3 This file is part of the Public Domain C Library (PDCLib).
4 Permission is granted to use, modify, and / or redistribute at will.
12 int sscanf( const char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ... )
16 va_start( ap, format );
17 rc = vsscanf( s, format, ap );
25 #define _PDCLIB_FILEID "stdio/sscanf.c"
26 #define _PDCLIB_STRINGIO
28 #include <_PDCLIB_test.h>
30 #define testscanf( s, format, ... ) sscanf( s, format, __VA_ARGS__ )
35 #include "scanf_testcases.h"