22 lines
351 B
C
22 lines
351 B
C
#ifndef INCLUDED_LISP_H
|
|
#define INCLUDED_LISP_H
|
|
|
|
#include "base.h"
|
|
#include "function.h"
|
|
#include "hashtable.h"
|
|
#include "lisp_string.h"
|
|
#include "list.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
extern LispVal *obarray;
|
|
|
|
void lisp_init(void);
|
|
|
|
void lisp_shutdown(void);
|
|
|
|
void debug_print(FILE *file, LispVal *obj);
|
|
void debug_obj_info(FILE *file, LispVal *obj);
|
|
|
|
#endif
|