File: ginsh_parser.h

package info (click to toggle)
ginac 1.0.8-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,544 kB
  • ctags: 3,232
  • sloc: cpp: 27,732; sh: 7,126; perl: 1,819; yacc: 763; lex: 345; makefile: 221; sed: 32
file content (27 lines) | stat: -rw-r--r-- 501 bytes parent folder | download
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
#ifndef YYSTYPE
#define YYSTYPE int
#endif
#define	T_NUMBER	257
#define	T_SYMBOL	258
#define	T_LITERAL	259
#define	T_DIGITS	260
#define	T_QUOTE	261
#define	T_QUOTE2	262
#define	T_QUOTE3	263
#define	T_EQUAL	264
#define	T_NOTEQ	265
#define	T_LESSEQ	266
#define	T_GREATEREQ	267
#define	T_QUIT	268
#define	T_WARRANTY	269
#define	T_PRINT	270
#define	T_IPRINT	271
#define	T_TIME	272
#define	T_XYZZY	273
#define	T_INVENTORY	274
#define	T_LOOK	275
#define	T_SCORE	276
#define	NEG	277


extern YYSTYPE yylval;