Remove src/expr.h - everything in it is now in types.h or protos.h

This commit is contained in:
Dianne Skoll
2024-06-02 10:26:41 -04:00
parent c2b53f95a4
commit d77d9854d2
18 changed files with 25 additions and 50 deletions
+16
View File
@@ -13,6 +13,22 @@
#include <limits.h>
#include "dynbuf.h"
typedef struct udf_struct UserFunc;
/* Define the types of values */
#define ERR_TYPE 0
#define INT_TYPE 1
#define TIME_TYPE 2
#define DATE_TYPE 3
#define STR_TYPE 4
#define DATETIME_TYPE 5
#define SPECIAL_TYPE 6 /* Only for system variables */
#define CONST_INT_TYPE 7 /* Only for system variables */
#define BEG_OF_EXPR '['
#define END_OF_EXPR ']'
#define COMMA ','
/* Values */
typedef struct {
char type;