File: eval_tab.h

package info (click to toggle)
python-astropy 1.3-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 44,256 kB
  • ctags: 35,559
  • sloc: ansic: 160,360; python: 137,322; sh: 11,493; lex: 7,638; yacc: 4,956; xml: 1,796; makefile: 474; cpp: 364
file content (42 lines) | stat: -rw-r--r-- 871 bytes parent folder | download | duplicates (10)
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
typedef union {
    int    Node;        /* Index of Node */
    double dbl;         /* real value    */
    long   lng;         /* integer value */
    char   log;         /* logical value */
    char   str[MAX_STRLEN];    /* string value  */
} FFSTYPE;
#define	BOOLEAN	258
#define	LONG	259
#define	DOUBLE	260
#define	STRING	261
#define	BITSTR	262
#define	FUNCTION	263
#define	BFUNCTION	264
#define	IFUNCTION	265
#define	GTIFILTER	266
#define	REGFILTER	267
#define	COLUMN	268
#define	BCOLUMN	269
#define	SCOLUMN	270
#define	BITCOL	271
#define	ROWREF	272
#define	NULLREF	273
#define	SNULLREF	274
#define	OR	275
#define	AND	276
#define	EQ	277
#define	NE	278
#define	GT	279
#define	LT	280
#define	LTE	281
#define	GTE	282
#define	POWER	283
#define	NOT	284
#define	INTCAST	285
#define	FLTCAST	286
#define	UMINUS	287
#define	ACCUM	288
#define	DIFF	289


extern FFSTYPE fflval;