13 lines
194 B
C
13 lines
194 B
C
|
|
#include <stddef.h>
|
|
|
|
#include "kind.h"
|
|
|
|
struct value_inheritance;
|
|
|
|
struct value* new_value(
|
|
enum value_kind kind,
|
|
const struct value_inheritance* inheritance,
|
|
size_t alloc_size);
|
|
|
|
|