dreid 01/06/29 02:01:42
Modified: include apr_tables.h
Log:
struct apr_pool_t == apr_pool_t so change these parameters to reflect this...
Revision Changes Path
1.18 +11 -11 apr/include/apr_tables.h
Index: apr_tables.h
===================================================================
RCS file: /home/cvs/apr/include/apr_tables.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- apr_tables.h 2001/03/25 02:13:11 1.17
+++ apr_tables.h 2001/06/29 09:01:41 1.18
@@ -149,9 +149,9 @@
* @param nelts the number of elements in the initial array
* @param elt_size The size of each element in the array.
* @return The new array
- * @deffunc apr_array_header_t *apr_array_make(struct apr_pool_t *p, int
nelts, int elt_size)
+ * @deffunc apr_array_header_t *apr_array_make(apr_pool_t *p, int nelts, int
elt_size)
*/
-APR_DECLARE(apr_array_header_t *) apr_array_make(struct apr_pool_t *p,
+APR_DECLARE(apr_array_header_t *) apr_array_make(apr_pool_t *p,
int nelts, int elt_size);
/**
@@ -184,7 +184,7 @@
* 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,
+APR_DECLARE(apr_array_header_t *) apr_array_copy(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
@@ -195,7 +195,7 @@
* @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,
+APR_DECLARE(apr_array_header_t *) apr_array_copy_hdr(apr_pool_t *p,
const apr_array_header_t *arr);
/**
@@ -206,7 +206,7 @@
* @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,
+APR_DECLARE(apr_array_header_t *) apr_array_append(apr_pool_t *p,
const apr_array_header_t *first,
const apr_array_header_t *second);
@@ -222,7 +222,7 @@
* @return A string containing all of the data in the array.
* @deffunc char *apr_array_pstrcat(apr_pool_t *p, const apr_array_header_t
*arr, const char sep)
*/
-APR_DECLARE(char *) apr_array_pstrcat(struct apr_pool_t *p,
+APR_DECLARE(char *) apr_array_pstrcat(apr_pool_t *p,
const apr_array_header_t *arr,
const char sep);
@@ -234,7 +234,7 @@
* @warning This table can only store text data
* @deffunc apr_table_t *apr_table_make(apr_pool_t *p, int nelts)
*/
-APR_DECLARE(apr_table_t *) apr_table_make(struct apr_pool_t *p, int nelts);
+APR_DECLARE(apr_table_t *) apr_table_make(apr_pool_t *p, int nelts);
/**
* Create a new table and copy another table into it
@@ -243,7 +243,7 @@
* @return A copy of the table passed in
* @deffunc apr_table_t *apr_table_copy(apr_pool_t *p, const apr_table_t *t)
*/
-APR_DECLARE(apr_table_t *) apr_table_copy(struct apr_pool_t *p,
+APR_DECLARE(apr_table_t *) apr_table_copy(apr_pool_t *p,
const apr_table_t *t);
/**
@@ -357,9 +357,9 @@
* @return A new table containing all of the data from the two passed in
* @deffunc apr_table_t *apr_table_overlay(apr_pool_t *p, const apr_table_t
*overlay, const apr_table_t *base);
*/
-APR_DECLARE(apr_table_t *) apr_table_overlay(struct apr_pool_t *p,
- const apr_table_t *overlay,
- const apr_table_t *base);
+APR_DECLARE(apr_table_t *) apr_table_overlay(apr_pool_t *p,
+ const apr_table_t *overlay,
+ const apr_table_t *base);
/**
* Iterate over a table running the provided function once for every