2025-04-13 18:34:02 +01:00
|
|
|
#include <mie/type.h>
|
|
|
|
|
|
2025-04-28 15:38:25 +01:00
|
|
|
static struct mie_type *get_type(struct mie_value *v, struct mie_ctx *ctx)
|
2025-04-13 18:34:02 +01:00
|
|
|
{
|
|
|
|
|
return MIE_TYPE(v);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const struct mie_value_type type_value_type = {
|
|
|
|
|
.t_id = MIE_VALUE_TYPE,
|
|
|
|
|
.t_get_type = get_type,
|
|
|
|
|
};
|