21 lines
455 B
C
21 lines
455 B
C
|
|
#include "../inheritance.h"
|
|
|
|
#include "inheritance.h"
|
|
|
|
#include "prettyprint.h"
|
|
#include "shallow_free.h"
|
|
#include "foreach_accessible_subvalue.h"
|
|
#include "compare.h"
|
|
|
|
struct value_inheritance boolean_value_inheritance =
|
|
{
|
|
.foreach_accessible_subvalue = boolean_value_foreach_accessible_subvalue,
|
|
|
|
.prettyprint = boolean_value_prettyprint,
|
|
|
|
.shallow_free = shallow_free_boolean_value,
|
|
|
|
.compare = compare_boolean_values,
|
|
};
|
|
|