diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-05 18:05:27 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-05 18:05:27 -0500 |
commit | 4a3aef3f7236d2b3267aead61f11c587c6f4bddb (patch) | |
tree | bea89287f8cf6290fc230fb82fb11b3b9a5c6e0f /include/eval_tab.h | |
parent | 9166f1762976cb64acfd8c9ecc067132ffefa615 (diff) | |
download | calfuse-4a3aef3f7236d2b3267aead61f11c587c6f4bddb.tar.gz |
Further improvements
Diffstat (limited to 'include/eval_tab.h')
-rw-r--r-- | include/eval_tab.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/include/eval_tab.h b/include/eval_tab.h deleted file mode 100644 index 784ac91..0000000 --- a/include/eval_tab.h +++ /dev/null @@ -1,37 +0,0 @@ -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 OR 272 -#define AND 273 -#define EQ 274 -#define NE 275 -#define GT 276 -#define LT 277 -#define LTE 278 -#define GTE 279 -#define POWER 280 -#define NOT 281 -#define INTCAST 282 -#define FLTCAST 283 -#define UMINUS 284 - - -extern FFSTYPE fflval; |