lisp-take-1/value/null/inheritance.c
2024-11-28 18:36:25 -06:00

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,
};