16 c1 . digit* '\n' @{ printf( "c1\n" );} |
17 c2 . alpha* '\n' @{ printf( "c2\n" );}|
18 c3 . '.'* '\n' @{ printf( "c3\n" );}
27 int test( char data[] )
29 int cs = test_en_commands;
30 char *p = data.ptr, pe = data.ptr + data.length;
35 if ( cs >= test_first_final )
43 test_ex_c1, '1', '2', '\n',
44 test_ex_c2, 'a', 'b', '\n',
45 test_ex_c3, '.', '.', '\n'