2025-04-13 18:34:02 +01:00
|
|
|
#ifndef MIE_ARG_H_
|
|
|
|
|
#define MIE_ARG_H_
|
|
|
|
|
|
|
|
|
|
#include <mie/value.h>
|
|
|
|
|
|
|
|
|
|
#define MIE_ARG(p) ((struct mie_arg *)(p))
|
|
|
|
|
|
|
|
|
|
struct mie_arg {
|
|
|
|
|
struct mie_value arg_base;
|
|
|
|
|
struct mie_type *arg_type;
|
|
|
|
|
};
|
|
|
|
|
|
2025-04-21 21:10:27 +01:00
|
|
|
extern struct mie_arg *mie_arg_create(struct mie_type *type);
|
|
|
|
|
|
2025-04-13 18:34:02 +01:00
|
|
|
#endif
|