summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 609802cfe5341a3949c4e67bf446d968dffcb99d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "gamebuilder.h"
#include "parser.tab.h"

typedef void *yyscan_t;
void yylex_init( yyscan_t * );
void yylex_destroy( yyscan_t );
void yyparse( yyscan_t, GameBuilder &bld );
void yyset_in( FILE *, yyscan_t );

int main( int argc, char *argv[] )
{
	yyscan_t scanner;

	GameBuilder bld;

	yylex_init( &scanner );

	FILE *in = fopen( argv[1], "rb" );
	yyset_in( in, scanner );

	yyparse( scanner, bld );
	yylex_destroy( scanner );

	fclose( in );

	return 0;
}