aboutsummaryrefslogtreecommitdiffstats
path: root/builtins.h
blob: 5c8e350897bdb77a421944125f0a15bd76a781bd (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 3

void iload_core(interpreter *it);

void iret(interpreter *it, variable *v);

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

#endif // BUILTINS_H_