From 3d76f7a607a4a2276129981a632e3a9cd911be84 Mon Sep 17 00:00:00 2001 From: mquinson Date: Tue, 16 Jan 2007 09:34:58 +0000 Subject: [PATCH 1/1] Another doc improvement git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3056 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/xbt/dynar.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/xbt/dynar.c b/src/xbt/dynar.c index b503343be7..4e895153bf 100644 --- a/src/xbt/dynar.c +++ b/src/xbt/dynar.c @@ -380,8 +380,11 @@ xbt_dynar_insert_at(xbt_dynar_t const dynar, /** @brief Remove the Nth dynar's element, sliding the previous values to the left * * Get the Nth element of a dynar, removing it from the dynar and moving - * all subsequent values to one position left in the dynar. Note that the free - * function is called only if object == NULL. + * all subsequent values to one position left in the dynar. + * + * If the object argument of this function is a non-null pointer, the removed + * element is copied to this address. If not, the element is freed using the + * free_f function passed at dynar creation. */ void xbt_dynar_remove_at(xbt_dynar_t const dynar, -- 2.20.1