14 lines
217 B
C
14 lines
217 B
C
#ifndef BLISP_INIT_H_
|
|
#define BLISP_INIT_H_
|
|
|
|
#include "data.h"
|
|
|
|
void init_builtins(Env *env);
|
|
|
|
Value *lisp_eval(const char *input);
|
|
void lisp_init(void);
|
|
void repl(void);
|
|
void load_file(const char *filename);
|
|
|
|
#endif
|