shithub: femtolisp

ref: ed84debe7fb8a8932b4df46ded4ba0ac30bf2a6a
dir: /print.h/

View raw version
#ifndef PRINT_H
#define PRINT_H

extern htable_t printconses;
extern int SCR_WIDTH;

void fl_print(ios_t *f, value_t v);
void print_traverse(value_t v);
void fl_print_chr(char c, ios_t *f);
void fl_print_str(char *s, ios_t *f);
void fl_print_child(ios_t *f, value_t v);

#endif