File: gram.h

package info (click to toggle)
plotutils 2.0-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,964 kB
  • ctags: 2,522
  • sloc: ansic: 38,416; sh: 1,853; yacc: 856; makefile: 181; 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	258
#define	IDENT	259
#define	SEP	260
#define	ABS	261
#define	SQRT	262
#define	EXP	263
#define	LOG	264
#define	LOG10	265
#define	SIN	266
#define	COS	267
#define	TAN	268
#define	ASIN	269
#define	ACOS	270
#define	ATAN	271
#define	SINH	272
#define	COSH	273
#define	TANH	274
#define	ASINH	275
#define	ACOSH	276
#define	ATANH	277
#define	FLOOR	278
#define	CEIL	279
#define	J0	280
#define	J1	281
#define	Y0	282
#define	Y1	283
#define	LGAMMA	284
#define	GAMMA	285
#define	ERF	286
#define	ERFC	287
#define	INVERF	288
#define	NORM	289
#define	INVNORM	290
#define	IGAMMA	291
#define	IBETA	292
#define	EVERY	293
#define	FROM	294
#define	PRINT	295
#define	STEP	296
#define	EXAM	297
#define	UMINUS	298


extern YYSTYPE yylval;