summaryrefslogtreecommitdiff
path: root/include/apr_env.h
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-03-05 21:22:26 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-03-05 21:22:26 +0000
commit01f781e3039c4c8cddb2befdb376e89d03ec0da8 (patch)
tree665a1cf9958bf86499a3a742b654fe391c3a5705 /include/apr_env.h
parentef127f5e9284d32db3e2127753b952575f65c68f (diff)
downloadlibapr-01f781e3039c4c8cddb2befdb376e89d03ec0da8.tar.gz
Rebalance our exposed headers such that everything is nested properly
between extern "C" blocks and doxygen blocks, that we never include other headers within our own header's extern "C" block, that we always tag the entire file contents for doxygen (within the APR_HEADER_H only-once block), and generally clean up doxygen so that it is all consistent and generates respectable (although not yet 'great') results. Major TODO after 0.9.2 releases; fill in the apr.h APR_HAVE/APR_HAS and apr_type_t documentation!!! git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64397 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_env.h')
-rw-r--r--include/apr_env.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/include/apr_env.h b/include/apr_env.h
index f04d62044..e8c092e3c 100644
--- a/include/apr_env.h
+++ b/include/apr_env.h
@@ -58,12 +58,6 @@
* @file apr_env.h
* @brief APR Environment functions
*/
-/**
- * @defgroup APR_ENV Functions for manupulating the environment
- * @ingroup APR_ENV
- * @{
- */
-
#include "apr_errno.h"
#include "apr_pools.h"
@@ -72,11 +66,16 @@ extern "C" {
#endif /* __cplusplus */
/**
+ * @defgroup apr_env Functions for manupulating the environment
+ * @ingroup APR
+ * @{
+ */
+
+/**
* Get the value of an environment variable
* @param value the returned value, allocated from @a pool
* @param envvar the name of the environment variable
* @param pool where to allocate @a value and any temporary storage from
- * @deffunc apr_status_t apr_env_get(char **value, const char *envvar, apr_pool_t *pool)
*/
APR_DECLARE(apr_status_t) apr_env_get(char **value, const char *envvar,
apr_pool_t *pool);
@@ -86,7 +85,6 @@ APR_DECLARE(apr_status_t) apr_env_get(char **value, const char *envvar,
* @param envvar the name of the environment variable
* @param value the value to set
* @param pool where to allocate temporary storage from
- * @deffunc apr_status_t apr_env_get(const char *envvar, const char *value, apr_pool_t *pool)
*/
APR_DECLARE(apr_status_t) apr_env_set(const char *envvar, const char *value,
apr_pool_t *pool);
@@ -95,13 +93,13 @@ APR_DECLARE(apr_status_t) apr_env_set(const char *envvar, const char *value,
* Delete a variable from the environment
* @param envvar the name of the environment variable
* @param pool where to allocate temporary storage from
- * @deffunc apr_status_t apr_env_delete(const char *envvar, apr_pool_t *pool)
*/
APR_DECLARE(apr_status_t) apr_env_delete(const char *envvar, apr_pool_t *pool);
+/** @} */
#ifdef __cplusplus
}
#endif
-/** @} */
+
#endif /* ! APR_ENV_H */