aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-05-18 14:38:41 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-05-18 14:38:41 -0400
commita1d18fd4225f67275ea4173532969e4ddf55b39f (patch)
tree6473f7cee0e829783bd64cc3d52af53f5089340f /types.h
parentee9a40f9102f12357e7a46c3b48a486c62c2311e (diff)
Add C string type
Diffstat (limited to 'types.h')
-rw-r--r--types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/types.h b/types.h
index df913de5..6d667c31 100644
--- a/types.h
+++ b/types.h
@@ -44,6 +44,7 @@ struct type_s {
BoolType,
IntType,
NumType,
+ CStringType,
TextType,
ArrayType,
TableType,
@@ -65,6 +66,7 @@ struct type_s {
struct {
int64_t bits;
} NumType;
+ struct {} CStringType;
struct {
const char *lang;
struct env_s *env;