lisp: lisp_print

This commit is contained in:
2026-02-11 07:48:49 +00:00
committed by oreodave
parent b91e79933b
commit 39e5b76f8b
2 changed files with 75 additions and 0 deletions

View File

@@ -8,6 +8,8 @@
#ifndef LISP_H
#define LISP_H
#include <stdio.h>
#include <alisp/symtable.h>
#include <alisp/vec.h>
@@ -52,6 +54,8 @@ lisp_t *cdr(lisp_t *);
void lisp_free(lisp_t *);
void lisp_free_rec(lisp_t *);
void lisp_print(FILE *, lisp_t *);
#endif
/* Copyright (C) 2026 Aryadev Chavali