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

12 lines
157 B
C

struct expression;
struct expression_inheritance
{
void (*print)(
struct expression*);
void (*free)(
struct expression*);
};