From 6ab3b52fbde3ab2ac11e66e4d664f67e108f6aee Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Wed, 27 Nov 2024 23:19:38 +0100 Subject: Rework resolve functions --- src/action.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/action.h') diff --git a/src/action.h b/src/action.h index 712bf81..795a79c 100644 --- a/src/action.h +++ b/src/action.h @@ -22,6 +22,8 @@ struct action { char *label; action_part_t *parts; size_t length; + bool validated; + bool resolved; }; typedef struct action action_t; @@ -30,6 +32,8 @@ bool action_perform(action_t *action, block_t *block, config_t *config); int action_validate(action_t *action, config_t *config); +bool action_resolve(action_t *action, config_t *config); + void action_free(action_t *action); #endif -- cgit v1.2.3