ecoli_node_str - Man Page

Name

ecoli_node_str — String node

— A node that matches a specific string.  

Synopsis

Functions

struct ec_node * ec_node_str (const char *id, const char *str)
int ec_node_str_set_str (struct ec_node *node, const char *str)

Detailed Description

A node that matches a specific string.

Configuration Schema

schema str {
    string string  {
        description "The string to match.";
    }
}

Function Documentation

struct ec_node * ec_node_str (const char * id, const char * str)

Create a string node that matches a specific string.

Parameters

id The node identifier.
str The string to match.

Returns

The node, or NULL on error (errno is set).

int ec_node_str_set_str (struct ec_node * node, const char * str)

Set the string to match on a string node.

Parameters

node The string node.
str The string to match. It is duplicated internally.

Returns

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

Author

Generated automatically by Doxygen for Libecoli from the source code.

Referenced By

The man pages ec_node_str(3) and ec_node_str_set_str(3) are aliases of ecoli_node_str(3).

Version 0.11.3 Libecoli