Archived
1
0
Fork 0
This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
lispy/lval/io.h

11 lines
224 B
C

#ifndef LVAL_IO
#define LVAL_IO
#include "base.h"
void flval_expr_print(FILE* stream, lval* v, char open, char close);
void flval_print(FILE* stream, lval* v);
void lval_print(lval* v);
void lval_println(lval* v);
#endif