summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-09-23 09:21:36 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-09-23 15:13:46 +0200
commitf74afa40f8b6b87ccf74a4ca70b5514a9a87e6f1 (patch)
tree1a8861b58722ec8079370048bd6aef686cd768dc /docs
parent7e8561e030fcfaba5cd620d7e9c9ab8356163132 (diff)
downloadcurl-f74afa40f8b6b87ccf74a4ca70b5514a9a87e6f1.tar.gz
dynbuf: add Curl_dyn_vaddf
Closes #6004
Diffstat (limited to 'docs')
-rw-r--r--docs/DYNBUF.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/DYNBUF.md b/docs/DYNBUF.md
index 382c1365d..aa528ec3a 100644
--- a/docs/DYNBUF.md
+++ b/docs/DYNBUF.md
@@ -42,6 +42,12 @@ Append a C string to the end of the buffer.
Append a `printf()`-style string to the end of the buffer.
+## vaddf
+
+ CURLcode Curl_dyn_vaddf(struct dynbuf *s, const char *fmt, va_list ap);
+
+Append a `vprintf()`-style string to the end of the buffer.
+
## reset
void Curl_dyn_reset(struct dynbuf *s);