18 lines
425 B
C
18 lines
425 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 null_value_inheritance =
|
|
{
|
|
.foreach_accessible_subvalue = null_value_foreach_accessible_subvalue,
|
|
.prettyprint = null_value_prettyprint,
|
|
.shallow_free = shallow_free_null_value,
|
|
.compare = compare_null_values,
|
|
};
|
|
|