4-variable-simplifier/expression/variable/inheritance.c
2026-04-25 16:00:10 -04:00

11 lines
212 B
C

#include "inheritance.h"
#include "print.h"
#include "free.h"
struct expression_inheritance variable_expression_inheritance =
{
.print = variable_expression_print,
.free = free_variable_expression,
};