ec_node_seq_add - Man Page

Add a child to a sequence node.

Synopsis

#include <ecoli/node_seq.h>

int ec_node_seq_add(
    struct ec_node   *node,   /* The sequence node. */
    /*
     * The child node to add. It is consumed and will be freed when the parent
     * is freed, or immediately on error.
     */
    struct ec_node   *child
);

Return Value

0 on success, -1 on error (errno is set).

See Also

ec_node_seq(3),

Referenced By

ec_node_seq(3).

2026-06-11 Libecoli Programmer's Manual