File: eval_tab.h

package info (click to toggle)
tcl-fitstcl 2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,608 kB
  • ctags: 529
  • sloc: ansic: 25,287; sh: 2,820; makefile: 252; tcl: 157
file content (41 lines) | stat: -rw-r--r-- 842 bytes parent folder | download | duplicates (8)
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
typedef union {
    int    Node;        /* Index of Node */
    double dbl;         /* real value    */
    long   lng;         /* integer value */
    char   log;         /* logical value */
    char   str[256];    /* 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	GTIFILTER	265
#define	REGFILTER	266
#define	COLUMN	267
#define	BCOLUMN	268
#define	SCOLUMN	269
#define	BITCOL	270
#define	ROWREF	271
#define	NULLREF	272
#define	SNULLREF	273
#define	OR	274
#define	AND	275
#define	EQ	276
#define	NE	277
#define	GT	278
#define	LT	279
#define	LTE	280
#define	GTE	281
#define	POWER	282
#define	NOT	283
#define	INTCAST	284
#define	FLTCAST	285
#define	UMINUS	286
#define	ACCUM	287
#define	DIFF	288


extern FFSTYPE fflval;