13 lines
311 B
C
13 lines
311 B
C
|
|
struct statement;
|
|
struct environment;
|
|
struct color_factory;
|
|
|
|
void assignment_statement_execute(
|
|
struct statement* this,
|
|
struct environment** environment,
|
|
struct booleans* booleans,
|
|
struct color_factory* cfactory,
|
|
struct wcostream* ostream,
|
|
bool print_value,
|
|
bool print_with_color);
|