15 lines
320 B
C
15 lines
320 B
C
|
|
#ifndef TOOL_RESOLVE_H_
|
||
|
|
#define TOOL_RESOLVE_H_
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
struct mie_op;
|
||
|
|
struct mie_ctx;
|
||
|
|
|
||
|
|
extern bool resolve_op_self(struct mie_op *op, struct mie_ctx *ctx);
|
||
|
|
extern bool resolve_op_successors(struct mie_op *op, struct mie_ctx *ctx);
|
||
|
|
|
||
|
|
extern bool resolve_op(struct mie_op *op, struct mie_ctx *ctx);
|
||
|
|
|
||
|
|
#endif
|