File: gram.h

package info (click to toggle)
plotutils 2.4.1-11
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 11,676 kB
  • ctags: 6,967
  • sloc: ansic: 76,305; sh: 15,172; cpp: 12,403; yacc: 2,604; makefile: 888; lex: 144
file content (50 lines) | stat: -rw-r--r-- 880 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
typedef union {
        struct  lex     *lexptr;
        struct  expr    *exprptr;
        struct  prt     *prtptr;
        int     simple;
} YYSTYPE;
#define	NUMBER	257
#define	IDENT	258
#define	SEP	259
#define	ABS	260
#define	SQRT	261
#define	EXP	262
#define	LOG	263
#define	LOG10	264
#define	SIN	265
#define	COS	266
#define	TAN	267
#define	ASIN	268
#define	ACOS	269
#define	ATAN	270
#define	SINH	271
#define	COSH	272
#define	TANH	273
#define	ASINH	274
#define	ACOSH	275
#define	ATANH	276
#define	FLOOR	277
#define	CEIL	278
#define	J0	279
#define	J1	280
#define	Y0	281
#define	Y1	282
#define	LGAMMA	283
#define	GAMMA	284
#define	ERF	285
#define	ERFC	286
#define	INVERF	287
#define	NORM	288
#define	INVNORM	289
#define	IGAMMA	290
#define	IBETA	291
#define	EVERY	292
#define	FROM	293
#define	PRINT	294
#define	STEP	295
#define	EXAM	296
#define	UMINUS	297


extern YYSTYPE yylval;