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

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