return (0);
} /* }}} int gl_graph_get_title */
+graph_ident_t *gl_graph_get_selector (graph_config_t *cfg) /* {{{ */
+{
+ if (cfg == NULL)
+ return (NULL);
+
+ return (ident_clone (cfg->select));
+} /* }}} graph_ident_t *gl_graph_get_selector */
+
int gl_instance_get_all (gl_inst_callback callback, /* {{{ */
void *user_data)
{
int gl_graph_get_title (graph_config_t *cfg,
char *buffer, size_t buffer_size);
+graph_ident_t *gl_graph_get_selector (graph_config_t *cfg);
+
int gl_graph_instance_get_all (graph_config_t *cfg,
gl_inst_callback callback, void *user_data);