tool: add resolution helper functions

This commit is contained in:
2026-03-16 12:05:58 +00:00
parent 8c9cab7408
commit 28b72cbf1e
2 changed files with 144 additions and 0 deletions

14
tool/resolve.h Normal file
View File

@@ -0,0 +1,14 @@
#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