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

12 lines
224 B
C
Raw Normal View History

2018-06-07 19:10:53 -04:00
#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