13 lines
259 B
C
13 lines
259 B
C
|
|
struct color_factory;
|
|
struct environment;
|
|
struct booleans;
|
|
|
|
void handle_string(
|
|
struct environment** environment,
|
|
struct booleans* booleans,
|
|
struct color_factory* cfactory,
|
|
const char* input_file,
|
|
bool echo,
|
|
bool print_with_colors);
|
|
|