src/action.c: add action_is_valid()

This commit is contained in:
Consolatis 2023-05-13 15:57:37 +02:00
parent b05b92bb27
commit 665d31c1c7
2 changed files with 56 additions and 0 deletions

View file

@ -20,6 +20,8 @@ struct action {
struct action *action_create(const char *action_name);
bool action_is_valid(struct action *action);
void action_arg_add_str(struct action *action, const char *key, const char *value);
void action_arg_from_xml_node(struct action *action, char *nodename, char *content);