bjh 01/03/24 18:13:12
Modified: include apr_tables.h
Log:
Tweak formatting of declarations so make_exports.awk picks them up.
Revision Changes Path
1.17 +10 -15 apr/include/apr_tables.h
Index: apr_tables.h
===================================================================
RCS file: /home/cvs/apr/include/apr_tables.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- apr_tables.h 2001/03/24 21:04:57 1.16
+++ apr_tables.h 2001/03/25 02:13:11 1.17
@@ -184,9 +184,8 @@
* for the elements to be copied if (and only if) the code subsequently does
* a push or arraycat.
*/
-APR_DECLARE(apr_array_header_t *)
- apr_array_copy(struct apr_pool_t *p,
- const apr_array_header_t *arr);
+APR_DECLARE(apr_array_header_t *) apr_array_copy(struct apr_pool_t *p,
+ const apr_array_header_t *arr);
/**
* Copy the headers of the array, and arrange for the elements to be copied
if
* and only if the code subsequently does a push or arraycat.
@@ -196,9 +195,8 @@
* @deffunc apr_array_header_t *apr_array_copy_hdr(apr_pool_t *p, const
apr_array_header_t *arr)
* @tip The alternate apr_array_copy copies the *entire* array.
*/
-APR_DECLARE(apr_array_header_t *)
- apr_array_copy_hdr(struct apr_pool_t *p,
- const apr_array_header_t *arr);
+APR_DECLARE(apr_array_header_t *) apr_array_copy_hdr(struct apr_pool_t *p,
+ const apr_array_header_t *arr);
/**
* Append one array to the end of another, creating a new array in the
process.
@@ -208,10 +206,9 @@
* @param return A new array containing the data from the two arrays passed
in.
* @deffunc apr_array_header_t *apr_array_append(apr_pool_t *p, const
apr_array_header_t *first, const apr_array_header_t *second)
*/
-APR_DECLARE(apr_array_header_t *)
- apr_array_append(struct apr_pool_t *p,
- const apr_array_header_t *first,
- const apr_array_header_t *second);
+APR_DECLARE(apr_array_header_t *) apr_array_append(struct apr_pool_t *p,
+ const apr_array_header_t *first,
+ const apr_array_header_t *second);
/**
* Generates a new string from the apr_pool_t containing the concatenated
@@ -378,8 +375,7 @@
* are run.
* @deffunc void apr_table_do(int (*comp) (void *, const char *, const char
*), void *rec, const apr_table_t *t, ...)
*/
-APR_DECLARE_NONSTD(void)
- apr_table_do(int (*comp) (void *, const char *, const char
*),
+APR_DECLARE_NONSTD(void) apr_table_do(int (*comp)(void *, const char *,
const char *),
void *rec, const apr_table_t *t, ...);
/**
@@ -396,9 +392,8 @@
* whose key matches are run.
* @deffunc void apr_table_vdo(int (*comp) (void *, const char *, const char
*), void *rec, const apr_table_t *t, va_list vp)
*/
-APR_DECLARE(void)
- apr_table_vdo(int (*comp) (void *, const char *, const char
*),
- void *rec, const apr_table_t *t, va_list);
+APR_DECLARE(void) apr_table_vdo(int (*comp)(void *, const char *, const char
*),
+ void *rec, const apr_table_t *t, va_list);
/* Conceptually, apr_table_overlap does this:
*