Reader
This commit is contained in:
18
src/lisp.h
Normal file
18
src/lisp.h
Normal file
@ -0,0 +1,18 @@
|
||||
#ifndef INCLUDED_LISP_H
|
||||
#define INCLUDED_LISP_H
|
||||
|
||||
#include "base.h"
|
||||
#include "function.h"
|
||||
#include "hashtable.h"
|
||||
#include "list.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void lisp_init(void);
|
||||
|
||||
void lisp_shutdown(void);
|
||||
|
||||
void debug_print(FILE *file, LispVal *obj);
|
||||
void debug_obj_info(FILE *file, LispVal *obj);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user