diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2003-03-05 21:22:26 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2003-03-05 21:22:26 +0000 |
commit | 26a1251cd50b032176c0c5d9bb6626c1a2b7bb52 (patch) | |
tree | 665a1cf9958bf86499a3a742b654fe391c3a5705 /include/apr_env.h | |
parent | 1f3331ec7ac24dc7dbefd1ffcd179c7a5f1fbfc0 (diff) | |
download | apr-26a1251cd50b032176c0c5d9bb6626c1a2b7bb52.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: https://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.h | 18 |
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 */ |