This commit is contained in:
2026-01-16 03:20:38 -08:00
parent e0d8693840
commit 94d5749d31
19 changed files with 1358 additions and 3 deletions

18
src/lisp.h Normal file
View 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