4 #include "graph_types.h"
5 #include "utils_array.h"
8 graph_def_t *def_create (graph_config_t *cfg, graph_ident_t *ident,
11 void def_destroy (graph_def_t *def);
13 int def_config (graph_config_t *cfg, const oconfig_item_t *ci);
15 int def_append (graph_def_t *head, graph_def_t *def);
17 graph_def_t *def_search (graph_def_t *head, graph_ident_t *ident,
20 _Bool def_matches (graph_def_t *def, graph_ident_t *ident);
22 int def_foreach (graph_def_t *def, def_callback_t callback, void *user_data);
24 int def_get_rrdargs (graph_def_t *def, graph_ident_t *ident,
27 /* vim: set sw=2 sts=2 et fdm=marker : */