X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/24c4905945f8f8055b32716b7bf03bc20f0ffebf..af783aa2cd9a69a50e4d88c0094bf9098f88e609:/src/xbt/graph.c diff --git a/src/xbt/graph.c b/src/xbt/graph.c index a7c1b942bd..efacd0c2dc 100644 --- a/src/xbt/graph.c +++ b/src/xbt/graph.c @@ -1,6 +1,6 @@ /* a generic graph library. */ -/* Copyright (c) 2006-2019. The SimGrid Team. +/* Copyright (c) 2006-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -101,13 +101,13 @@ void xbt_graph_node_set_data(xbt_node_t node, void *data) node->data = data; } -/** @brief Get the user data associated to a edge */ +/** @brief Get the user data associated to an edge */ void* xbt_graph_edge_get_data(const s_xbt_edge_t* edge) { return edge->data; } -/** @brief Set the user data associated to a edge */ +/** @brief Set the user data associated to an edge */ void xbt_graph_edge_set_data(xbt_edge_t edge, void *data) { edge->data = data;