8 lines
128 B
C
8 lines
128 B
C
|
|
struct environment;
|
|
struct string;
|
|
|
|
struct value* environment_lookup(
|
|
struct environment* this,
|
|
struct string* name);
|
|
|