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

11 lines
197 B
C

#include "inheritance.h"
#include "print.h"
#include "free.h"
struct expression_inheritance not_expression_inheritance =
{
.print = not_expression_print,
.free = free_not_expression,
};