aboutsummaryrefslogtreecommitdiffstats
path: root/builtins.h
blob: 91c6e8c14128ebde53d38ef6994a5854c84ba549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef BUILTINS_H_
#define BUILTINS_H_

#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_