lisp: add and implement lisp_free_rec

May be useful for testing.
This commit is contained in:
2026-02-09 10:20:31 +00:00
committed by oreodave
parent b7fc5170b0
commit daa1d3d565
2 changed files with 33 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ lisp_t *car(lisp_t *);
lisp_t *cdr(lisp_t *);
void lisp_free(lisp_t *);
void lisp_free_rec(lisp_t *);
#endif