summaryrefslogtreecommitdiff
path: root/tests/test-bison-yylval/main.c
blob: fb45fa5790ae5c8967dd06727eaa3119a7d515e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "parser.h"
#include "scanner.h"

extern int testparse(yyscan_t);

int main ( int argc, char** argv )
{
    yyscan_t scanner;
    /*yydebug =1;*/
    testlex_init ( &scanner );
    testset_in(stdin,scanner);
    testparse ( scanner );
    testlex_destroy ( scanner );
    return 0;
}


/* vim:set tabstop=8 softtabstop=4 shiftwidth=4: */