10 lines
169 B
C
10 lines
169 B
C
|
|
#include <stddef.h>
|
|
|
|
struct expression_inheritance;
|
|
|
|
struct expression* new_expression(
|
|
const struct expression_inheritance* inheritance,
|
|
size_t alloc_size);
|
|
|
|
|