File: parser.h

package info (click to toggle)
libmatheval 1.1.3-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,352 kB
  • ctags: 412
  • sloc: sh: 12,378; ansic: 3,182; lex: 143; makefile: 137; yacc: 68
file content (22 lines) | stat: -rw-r--r-- 363 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
#ifndef BISON_PARSER_H
# define BISON_PARSER_H

#ifndef YYSTYPE
typedef union {
  Node *node;
  Record *record;
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define	NUMBER	257
# define	CONSTANT	258
# define	VARIABLE	259
# define	FUNCTION	260
# define	NEG	261
# define	END	262


extern YYSTYPE yylval;

#endif /* not BISON_PARSER_H */