21 lines
409 B
C
21 lines
409 B
C
|
|
struct value;
|
|
|
|
struct value_inheritance
|
|
{
|
|
void (*foreach_accessible_subvalue)(
|
|
const struct value* this,
|
|
void (*callback)(
|
|
struct value* subvalue));
|
|
|
|
struct stringtree* (*prettyprint)(
|
|
const struct value* this);
|
|
|
|
int (*compare)(
|
|
const struct value*,
|
|
const struct value*);
|
|
|
|
void (*shallow_free)(
|
|
struct value* this);
|
|
};
|
|
|