11 lines
197 B
C
11 lines
197 B
C
|
|
#include "inheritance.h"
|
|
#include "print.h"
|
|
#include "free.h"
|
|
|
|
struct expression_inheritance and_expression_inheritance =
|
|
{
|
|
.print = and_expression_print,
|
|
.free = free_and_expression,
|
|
};
|
|
|