aboutsummaryrefslogtreecommitdiff
path: root/src/env/env.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/env/env.c')
-rw-r--r--src/env/env.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/env/env.c b/src/env/env.c
index c977572ab..33d12c01e 100644
--- a/src/env/env.c
+++ b/src/env/env.c
@@ -18,7 +18,7 @@
18 * Boston, MA 02111-1307, USA. 18 * Boston, MA 02111-1307, USA.
19 */ 19 */
20 20
21/** 21/**
22 * @file env/env.c 22 * @file env/env.c
23 * @brief Library providing operations for the @e environment of 23 * @brief Library providing operations for the @e environment of
24 * PSYC and Social messages, and for (de)serializing variable values. 24 * PSYC and Social messages, and for (de)serializing variable values.
@@ -29,7 +29,7 @@
29#include "gnunet_util_lib.h" 29#include "gnunet_util_lib.h"
30#include "gnunet_env_lib.h" 30#include "gnunet_env_lib.h"
31 31
32/** 32/**
33 * Environment for a message. 33 * Environment for a message.
34 * 34 *
35 * Contains modifiers. 35 * Contains modifiers.
@@ -42,9 +42,9 @@ struct GNUNET_ENV_Environment
42}; 42};
43 43
44 44
45/** 45/**
46 * Create an environment. 46 * Create an environment.
47 * 47 *
48 * @return A newly allocated environment. 48 * @return A newly allocated environment.
49 */ 49 */
50struct GNUNET_ENV_Environment * 50struct GNUNET_ENV_Environment *
@@ -54,7 +54,7 @@ GNUNET_ENV_environment_create ()
54} 54}
55 55
56 56
57/** 57/**
58 * Add a modifier to the environment. 58 * Add a modifier to the environment.
59 * 59 *
60 * @param env The environment. 60 * @param env The environment.
@@ -78,7 +78,7 @@ GNUNET_ENV_environment_add_mod (struct GNUNET_ENV_Environment *env,
78} 78}
79 79
80 80
81/** 81/**
82 * Iterate through all modifiers in the environment. 82 * Iterate through all modifiers in the environment.
83 * 83 *
84 * @param env The environment. 84 * @param env The environment.
@@ -95,7 +95,7 @@ GNUNET_ENV_environment_iterate (const struct GNUNET_ENV_Environment *env,
95} 95}
96 96
97 97
98/** 98/**
99 * Get the number of modifiers in the environment. 99 * Get the number of modifiers in the environment.
100 * 100 *
101 * @param env The environment. 101 * @param env The environment.
@@ -109,7 +109,7 @@ GNUNET_ENV_environment_get_mod_count (const struct GNUNET_ENV_Environment *env)
109} 109}
110 110
111 111
112/** 112/**
113 * Destroy an environment. 113 * Destroy an environment.
114 * 114 *
115 * @param env The environment to destroy. 115 * @param env The environment to destroy.