X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/97ea8e6ffb9fade57fa48f52caca2a35b518b6da..66d97e68ea51b5514594e5818f75c7d844586eae:/include/xbt/graph.h diff --git a/include/xbt/graph.h b/include/xbt/graph.h index 534472df26..399bc210d1 100644 --- a/include/xbt/graph.h +++ b/include/xbt/graph.h @@ -39,13 +39,13 @@ XBT_PUBLIC(double) xbt_graph_edge_get_length(xbt_edge_t e); XBT_PUBLIC(double*) xbt_graph_get_length_matrix(xbt_graph_t g); XBT_PUBLIC(void) xbt_graph_free_node(xbt_graph_t g, xbt_node_t n, - void_f_pvoid_t *node_free_function , void_f_pvoid_t *edge_free_function); + void_f_pvoid_t node_free_function , void_f_pvoid_t edge_free_function); XBT_PUBLIC(void) xbt_graph_free_edge(xbt_graph_t g, xbt_edge_t e, - void_f_pvoid_t *free_function); + void_f_pvoid_t free_function); XBT_PUBLIC(void) xbt_graph_free_graph(xbt_graph_t g, - void_f_pvoid_t *node_free_function, - void_f_pvoid_t *edge_free_function, - void_f_pvoid_t *graph_free_function); + void_f_pvoid_t node_free_function, + void_f_pvoid_t edge_free_function, + void_f_pvoid_t graph_free_function); XBT_PUBLIC(int) __xbt_find_in_dynar(xbt_dynar_t dynar, void *p);