lambda-calc-1/value/new.h
2025-01-13 20:36:07 -06:00

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);