18 lines
323 B
C
18 lines
323 B
C
|
|
#include <stdbool.h>
|
|
|
|
struct booleans;
|
|
struct environment;
|
|
struct wcostream;
|
|
struct color_factory;
|
|
struct statement;
|
|
|
|
void statement_execute(
|
|
struct statement* this,
|
|
struct environment** environment,
|
|
struct booleans* booleans,
|
|
struct wcostream* ostream,
|
|
bool print_value,
|
|
bool print_with_color);
|
|
|
|
|