#ifndef MIE_ARG_H_ #define MIE_ARG_H_ #include #define MIE_ARG(p) ((struct mie_arg *)(p)) struct mie_arg { struct mie_value arg_base; struct mie_type *arg_type; }; extern struct mie_arg *mie_arg_create(struct mie_type *type); #endif