aboutsummaryrefslogtreecommitdiffstats
path: root/builtins.h
diff options
context:
space:
mode:
Diffstat (limited to 'builtins.h')
-rw-r--r--builtins.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/builtins.h b/builtins.h
index 8739778..91c6e8c 100644
--- a/builtins.h
+++ b/builtins.h
@@ -3,6 +3,12 @@
#include "parser.h"
+#define IUP_COUNT 3
+#define IDOWN_COUNT 2
+
void iload_core(interpreter *it);
+const func_t indent_up[IUP_COUNT];
+const func_t indent_down[IDOWN_COUNT];
+
#endif // BUILTINS_H_