11 lines
194 B
C
11 lines
194 B
C
|
|
#include "inheritance.h"
|
|
#include "print.h"
|
|
#include "free.h"
|
|
|
|
struct expression_inheritance or_expression_inheritance =
|
|
{
|
|
.print = or_expression_print,
|
|
.free = free_or_expression,
|
|
};
|
|
|