Files
ivy/mie/arg.c

13 lines
238 B
C

#include <mie/arg.h>
static struct mie_type *get_type(struct mie_value *v)
{
struct mie_arg *arg = MIE_ARG(v);
return arg->arg_type;
}
const struct mie_value_type arg_value_type = {
.t_id = MIE_VALUE_ARG,
.t_get_type = get_type,
};