11 lines
160 B
C
11 lines
160 B
C
|
|
struct environment;
|
|
struct string;
|
|
struct value;
|
|
|
|
void environment_declare(
|
|
struct environment* this,
|
|
struct string* name,
|
|
struct value* value);
|
|
|
|
|