X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fsscan_sources.incl;fp=functions%2Fstdio%2Fsscan_sources.incl;h=0000000000000000000000000000000000000000;hb=809bf566c6c598ad234ee36d58278eb54bdd8fc6;hp=78063a915e35e4608fd32876c15655a86672cda5;hpb=dcc4ff8e8ce8f97bd963ae4d56e053f2b610e183;p=pdclib.old diff --git a/functions/stdio/sscan_sources.incl b/functions/stdio/sscan_sources.incl deleted file mode 100644 index 78063a9..0000000 --- a/functions/stdio/sscan_sources.incl +++ /dev/null @@ -1,43 +0,0 @@ - char const * general = "12345678901\0003-5+7\0009\3772 4 6 8 0\3771 \011 5%% 0"; - char const * decimal = "-0 +0 -128 +127 +255 -32768 +32767 +65535\n" - "-2147483648 +2147483647 +4294967295\n" - "-9223372036854775808 +9223372036854775807\n" - "+18446744073709551615\n"; - char const * hexadecimal = "-0x0 -0x000 -0x7f -0x80 0xff -0x7fff -0x8000\n" - "0xffff -0x7fffffff -0x80000000 0xffffffff\n" - "-0x7fffffffffffffff -0x8000000000000000\n" - "0xffffffffffffffff\n"; - char const * octal = "+0000 -0000 +0177 +0377 -0377 +077777 +0177777\n" - "-0177777 +017777777777 +037777777777\n" - "-037777777777 +0777777777777777777777\n" - "+01777777777777777777777\n" - "-01777777777777777777777\n"; - char const * alpha = "abcdefgh-ijklmnop[qrs%uvw]xyz"; -#ifndef REGTEST - char const * special = "-0xz\n"; -#endif - - -/* sscan */ -#define TESTSCAN( result, count, source, offset, ... ) \ - do \ - { \ - int n = -1; \ - int res = SCANFUNC( source + offset, __VA_ARGS__ ); \ - if ( res != result ) \ - { \ - rc += 1; \ - printf( "FAILED: " __FILE__ ", line %d - expected result %d, got %d\n", __LINE__, result, res ); \ - } \ - if ( n != count ) \ - { \ - rc += 1; \ - printf( "FAILED: " __FILE__ ", line %d - expected count %d, got %d\n", __LINE__, count, n ); \ - } \ - } while ( 0 ) - -#define SCAN( format ) format "%n", &n -#define SCANPARMS( format, ... ) format "%n", __VA_ARGS__, &n - -#define _PDCLIB_SSCAN -