File: parser.h

package info (click to toggle)
saml 970418-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,204 kB
  • ctags: 1,701
  • sloc: ansic: 17,182; sh: 2,583; yacc: 497; perl: 264; makefile: 250; python: 242
file content (23 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
typedef union {
	int	integer;
	char*	string;
	alist	arglist;
} YYSTYPE;
#define	TOK_IF	258
#define	TOK_PRECIOUS	259
#define	TOK_MODULO	260
#define	TOK_GEQ	261
#define	TOK_LEQ	262
#define	TOK_NEQ	263
#define	TOK_ARROW	264
#define	TOK_SHIFT	265
#define	INDEX	266
#define	INTEGER	267
#define	IDENTIFIER	268
#define	BIG_INTEGER	269
#define	QSTRING	270
#define	UNARY_PLUS	271
#define	UNARY_MINUS	272


extern YYSTYPE yylval;