]> granicus.if.org Git - apache/commitdiff
* include/util_varbuf.h: Doxygen tweaks.
authorRainer Jung <rjung@apache.org>
Tue, 31 Jan 2012 12:07:38 +0000 (12:07 +0000)
committerRainer Jung <rjung@apache.org>
Tue, 31 Jan 2012 12:07:38 +0000 (12:07 +0000)
Backport of r1211351 from trunk.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1238423 13f79535-47bb-0310-9956-ffa450edef68

include/util_varbuf.h

index 696284620b5910fde1e161afa82e1b979f9ed950..1ae99f911e2b1fba440bb072b2930592249f4f58 100644 (file)
@@ -62,7 +62,7 @@ struct ap_varbuf {
  * @param pool the pool to allocate small buffers from and to register the
  *        cleanup with
  * @param vb pointer to the ap_varbuf struct
- * @init_size the initial size of the buffer (see ap_varbuf_grow() for details)
+ * @param init_size the initial size of the buffer (see ap_varbuf_grow() for details)
  */
 AP_DECLARE(void) ap_varbuf_init(apr_pool_t *pool, struct ap_varbuf *vb,
                                 apr_size_t init_size);
@@ -130,6 +130,7 @@ AP_DECLARE(char *) ap_varbuf_pdup(apr_pool_t *p, struct ap_varbuf *vb,
 /** Perform string substitutions based on regexp match, using an ap_varbuf.
  * This function behaves like ap_pregsub(), but appends to an ap_varbuf
  * instead of allocating the result from a pool.
+ * @param vb The ap_varbuf to which the string will be appended
  * @param input An arbitrary string containing $1 through $9.  These are
  *              replaced with the corresponding matched sub-expressions
  * @param source The string that was originally matched to the regex