diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-02-12 11:23:17 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-02-12 11:23:17 -0500 |
commit | 5d85baa270b046eedf472d4cb851fe17fb608fc5 (patch) | |
tree | 346fe38604047b1d25157af0966a1561961a3b4c /builtins.h | |
parent | 1d092d70a3c941920da6fb25899bac0aec5cf6bf (diff) |
indent fixes, nested conditionals
Diffstat (limited to 'builtins.h')
-rw-r--r-- | builtins.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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_ |