From b3b0c807a75c4f854495b547d8e00a598979cbf6 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 3 Mar 2019 13:18:08 +0100 Subject: Add arithmetic (binop) parsing --- include/binop_type.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 include/binop_type.h (limited to 'include/binop_type.h') 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 -- cgit v1.2.3