aboutsummaryrefslogtreecommitdiff
path: root/include/binop_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/binop_type.h')
-rw-r--r--include/binop_type.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/binop_type.h b/include/binop_type.h
new file mode 100644
index 0000000..d04f9d7
--- /dev/null
+++ b/include/binop_type.h
@@ -0,0 +1,12 @@
+#ifndef AMALGAM_BINOP_TYPE_H
+#define AMALGAM_BINOP_TYPE_H
+
+typedef enum {
+ BINOP_ADD,
+ BINOP_SUB,
+ BINOP_MUL,
+ BINOP_DIV,
+ BINOP_DOT
+} BinopType;
+
+#endif \ No newline at end of file