]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* include/util_varbuf.h: Doxygen tweaks.
authorJoe Orton <jorton@apache.org>
Wed, 7 Dec 2011 09:40:41 +0000 (09:40 +0000)
committerJoe Orton <jorton@apache.org>
Wed, 7 Dec 2011 09:40:41 +0000 (09:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1211351 13f79535-47bb-0310-9956-ffa450edef68

include/util_varbuf.h

index 28fb8672030c306efd6332429f8787b045838858..24aa088ef0757d4d110d5db30f3e3fdbf8e88cb6 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