From: Rainer Jung Date: Tue, 31 Jan 2012 12:07:38 +0000 (+0000) Subject: * include/util_varbuf.h: Doxygen tweaks. X-Git-Tag: 2.4.1~84 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77aad84acb7a849b327c01d37a8306e3acfe9f54;p=apache * include/util_varbuf.h: Doxygen tweaks. 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 --- diff --git a/include/util_varbuf.h b/include/util_varbuf.h index 696284620b..1ae99f911e 100644 --- a/include/util_varbuf.h +++ b/include/util_varbuf.h @@ -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