15#include <ecoli/node.h>
30#define EC_NODE_SUBSET(args...) __ec_node_subset(args, EC_VA_END)
36struct ec_node *__ec_node_subset(
const char *
id, ...);
int ec_node_subset_add(struct ec_node *node, struct ec_node *child)
Add a child to a subset node.
unsigned int ec_node_subset_get_min(const struct ec_node *node)
Get the minimum number of children that must match.
int ec_node_subset_set_min(struct ec_node *node, unsigned int min)
Set the minimum number of children that must match.
struct ec_node * ec_node_subset_min(const char *id, unsigned int min)
Create an empty subset node with a minimum number of children that must match.
struct ec_node * ec_node_subset(const char *id)
Create an empty subset node.
struct ec_node * ec_node(const char *typename, const char *id)
Create a new node from its type name.