1 // ----------------------------------------------------------------------------
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
8 int sscanf( const char * restrict s, const char * restrict format, ... ) { /* TODO */ };
10 /* PDPC code - unreviewed
15 va_start(arg, format);
16 ret = vvscanf(format, arg, NULL, s);