aboutsummaryrefslogtreecommitdiff
path: root/include/binop_type.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-10-02 01:00:59 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commitb124548bcee1ab6d034d4499fe695073566ae37d (patch)
treee4014070ac69a2b821e12cc9264ba54aaa8089f4 /include/binop_type.h
parent7eb8642c3ace697b03c4fc6edc90ea0ada715689 (diff)
Add !=,<,<=,>,>=; both signed and not
Diffstat (limited to 'include/binop_type.h')
-rw-r--r--include/binop_type.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/binop_type.h b/include/binop_type.h
index 94d2b7a..9264cf7 100644
--- a/include/binop_type.h
+++ b/include/binop_type.h
@@ -8,7 +8,12 @@ typedef enum {
BINOP_DIV,
BINOP_DOT,
BINOP_EQUALS,
- BINOP_AND
+ BINOP_NOT_EQUAL,
+ BINOP_AND,
+ BINOP_LESS,
+ BINOP_LESS_EQUAL,
+ BINOP_GREATER,
+ BINOP_GREATER_EQUAL
} BinopType;
#endif