io.h file
Contents
- Reference
Functions
- void lval_print(const lval* obj)
- Prints the lval.
- void lval_println(const lval* obj)
- Prints the lval to stdout with a newline.
- void lval_expr_print(const lval* obj, char open, char close)
- Prints the lval as an expression to stdout.
- void lval_print_str(const lval* obj)
- TODO.
Function documentation
void lval_print(const lval* obj)
Prints the lval.
Parameters | |
---|---|
obj | - type: const lval* |
Prints the lval to stdout.
void lval_println(const lval* obj)
Prints the lval to stdout with a newline.
Parameters | |
---|---|
obj | - type: const lval* |
void lval_expr_print(const lval* obj, char open, char close)
Prints the lval as an expression to stdout.
Parameters | |
---|---|
obj | - type: const lval* |
open | - type: char |
close | - type: char |
Prints the lval as an expression surrounded by the open
and close
parameters.