12 lines
158 B
C
12 lines
158 B
C
|
|
struct expression_inheritance;
|
|
|
|
struct expression
|
|
{
|
|
const struct expression_inheritance* inheritance;
|
|
|
|
int cost;
|
|
|
|
unsigned refcount;
|
|
};
|
|
|