File: parser.h

package info (click to toggle)
gcvs 1.0final-12
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 12,248 kB
  • ctags: 10,631
  • sloc: ansic: 71,709; cpp: 39,780; sh: 18,434; makefile: 1,915; yacc: 1,299; tcl: 1,283; perl: 910; lex: 249; csh: 185; lisp: 7
file content (34 lines) | stat: -rwxr-xr-x 682 bytes parent folder | download | duplicates (4)
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
29
30
31
32
33
34
typedef union {
	char *string;
	int aint;
} YYSTYPE;
#define	INTEGER	257
#define	STRING	258
#define	TAG	259
#define	REVNUM	260
#define	ID_CHAR	261
#define	ID_DESCRIPTION	262
#define	ID_TOTREVISIONS	263
#define	ID_SELREVISIONS	264
#define	ID_KEYWORD	265
#define	ID_SYMBOLIC	266
#define	ID_ACCESS	267
#define	ID_LOCKS	268
#define	ID_STRICT	269
#define	ID_BRANCH	270
#define	ID_HEAD	271
#define	ID_WORKING	272
#define	ID_RCS	273
#define	ID_REVISION	274
#define	ID_DATE	275
#define	ID_BRANCHES	276
#define	ID_REVFOLLOW	277
#define	ID_ENDFOLLOW	278
#define	ID_LINES	279
#define	ID_ANYBUTSEP	280
#define	ID_LOCKEDBY	281
#define	ID_AUTHOR	282
#define	ID_STATE	283


extern YYSTYPE yylval;