Reworked scanf() testing. General cleanups.
[fw/pdclib] / testing / scanf_testcases.h
1 {
2     char buffer[100];
3 #ifndef TEST_CONVERSION_ONLY
4     SCANF_TEST( 0, "foo", "foo", NULL );
5 #endif
6     SCANF_TEST( 1, "foo", "%3c", buffer );
7     TESTCASE( memcmp( buffer, "foo", 3 ) == 0 );
8 }