]> pd.if.org Git - pdclib/blob - functions/stdio/sscanf.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / sscanf.c
1 /* sscanf( const char *, const char *, ... )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdio.h>
8 #include <stdarg.h>
9
10 #ifndef REGTEST
11
12 int sscanf( const char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ... )
13 {
14     int rc;
15     va_list ap;
16     va_start( ap, format );
17     rc = vsscanf( s, format, ap );
18     va_end( ap );
19     return rc;
20 }
21
22 #endif
23
24 #ifdef TEST
25 #define _PDCLIB_FILEID "stdio/sscanf.c"
26 #define _PDCLIB_STRINGIO
27
28 #include "_PDCLIB_test.h"
29
30 #define testscanf( s, format, ... ) sscanf( s, format, __VA_ARGS__ )
31
32 int main( void )
33 {
34     char source[100];
35 #include "scanf_testcases.h"
36     return TEST_RESULTS;
37 }
38
39 #endif
40