lambda-calc-1/handle_interactive.h
2025-01-20 13:40:51 -06:00

14 lines
278 B
C

struct environment;
struct booleans;
struct color_factory;
void handle_interactive(
struct environment** environment,
struct booleans* booleans,
struct wcostream* wc_stdout
#ifndef RELEASE_BUILD
, const char* test_interactive_input_file
#endif
);