diff options
| author | Federico Angelilli <code@fedang.net> | 2024-11-27 23:19:38 +0100 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-11-27 23:19:38 +0100 |
| commit | 6ab3b52fbde3ab2ac11e66e4d664f67e108f6aee (patch) | |
| tree | 838f5231fffc6cacdd65762443fd56bbe0f275f6 /src/config.h | |
| parent | 2582279bc1046954702311c300294c5fd9f3ae0c (diff) | |
Rework resolve functions
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.h b/src/config.h index 9a26615..6a13ab3 100644 --- a/src/config.h +++ b/src/config.h @@ -73,9 +73,9 @@ int config_read(config_t *config, FILE *file); int config_validate(config_t *config); -bool config_resolve_children(config_t *config, block_t *block); +bool config_resolve_action(config_t *config, const char *label, action_t **action); -int config_resolve(config_t *config, block_t **block); +bool config_resolve(config_t *config, block_t **block); void config_free(config_t *config); |
