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

#include "parser.h"

#define IUP_COUNT 3
#define IDOWN_COUNT 2

void iload_core(interpreter *it);

int ifunc_ret(interpreter *it);

const func_t indent_up[IUP_COUNT];
const func_t indent_down[IDOWN_COUNT];

#endif // BUILTINS_H_