You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef BUILTINS_H_
|
|
#define BUILTINS_H_
|
|
|
|
#include "parser.h"
|
|
|
|
#define IUP_COUNT 3
|
|
#define IDOWN_COUNT 2
|
|
|
|
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_
|