X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;ds=sidebyside;f=functions%2Fstdio%2Fscan_test.h;fp=functions%2Fstdio%2Fscan_test.h;h=0000000000000000000000000000000000000000;hb=809bf566c6c598ad234ee36d58278eb54bdd8fc6;hp=9eae7c879884ee6a42f6c70f53764b75df18c30b;hpb=dcc4ff8e8ce8f97bd963ae4d56e053f2b610e183;p=pdclib.old diff --git a/functions/stdio/scan_test.h b/functions/stdio/scan_test.h deleted file mode 100644 index 9eae7c8..0000000 --- a/functions/stdio/scan_test.h +++ /dev/null @@ -1,16 +0,0 @@ -/* $Id$ */ - -/* scan test header - - This file is part of the Public Domain C Library (PDCLib). - Permission is granted to use, modify, and / or redistribute at will. -*/ - -#include -#include - -#define CHECK_TRUE( a ) TESTCASE( a != 0 ) -#define CHECK_FALSE( a ) TESTCASE( a == 0 ) -#define CHECK_EQUAL( a, b ) do { int x = a; int y = b; TESTCASE( x == y ); } while ( 0 ) -#define CHECK_FEQUAL( a, b, T, F ) do { T x = a; T y = b; TESTCASE( x == y ); } while ( 0 ) -