summaryrefslogtreecommitdiff
path: root/include/bitwiseOp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bitwiseOp.h')
-rw-r--r--include/bitwiseOp.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/bitwiseOp.h b/include/bitwiseOp.h
new file mode 100644
index 0000000..e2d3c42
--- /dev/null
+++ b/include/bitwiseOp.h
@@ -0,0 +1,12 @@
+#pragma once
+
+/* Arithmetic. */
+int lbitAnd( lua_State* L );
+int lbitOr( lua_State* L );
+int lbitXor( lua_State* L );
+int lbitNot( lua_State* L );
+int lbitShiftLeft( lua_State* L );
+int lbitShiftRight( lua_State* L );
+int lbitSet( lua_State* L );
+int lbitGet( lua_State* L );
+int lbitToggle( lua_State* L );