From ecfbc703dc930a20d56562451f4aa807175503e2 Mon Sep 17 00:00:00 2001 From: thing1 Date: Tue, 18 Feb 2025 22:00:20 +0000 Subject: init commit --- types.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 types.h (limited to 'types.h') diff --git a/types.h b/types.h new file mode 100644 index 0000000..b2e50c2 --- /dev/null +++ b/types.h @@ -0,0 +1,18 @@ +#include + +typedef struct exp { + char name; + char op; + + bool var; + union { + int v; + char vv; + }; +} exp; + +typedef struct function { + exp *exprs[1024]; + int exprcount; + char name; +} function; -- cgit v1.2.3