2024-02-24 21:34:06 +01:00

17 lines
188 B
C

#pragma once
#include "type.h"
#include "value.h"
typedef struct
{
value_t *value;
list_node_t *next;
} list_node_t;
typedef struct
{
type_t *type;
list_node_t *head;
} list_t;