aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-29 20:06:09 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-29 20:06:09 -0400
commit05515d8645326efa3db6311f6be1be776452c68a (patch)
tree15e58e72fc1aeec61017f02d8bf555e38a8dfda3 /types.h
parent8f7f66d7c894544c7c7e8ffae5d74e3cc602256f (diff)
Add DateTime
Diffstat (limited to 'types.h')
-rw-r--r--types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/types.h b/types.h
index d92e217d..a1f7cae1 100644
--- a/types.h
+++ b/types.h
@@ -48,6 +48,7 @@ struct type_s {
IntType,
NumType,
CStringType,
+ DateTimeType,
TextType,
ArrayType,
ChannelType,
@@ -77,7 +78,7 @@ struct type_s {
struct {
enum { TYPE_NBITS32=32, TYPE_NBITS64=64 } bits;
} NumType;
- struct {} CStringType;
+ struct {} CStringType, DateTimeType;
struct {
const char *lang;
struct env_s *env;