14 lines
278 B
C
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
|
|
);
|
|
|