diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-23 09:21:36 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-23 15:13:46 +0200 |
commit | f74afa40f8b6b87ccf74a4ca70b5514a9a87e6f1 (patch) | |
tree | 1a8861b58722ec8079370048bd6aef686cd768dc /docs/DYNBUF.md | |
parent | 7e8561e030fcfaba5cd620d7e9c9ab8356163132 (diff) | |
download | curl-f74afa40f8b6b87ccf74a4ca70b5514a9a87e6f1.tar.gz |
dynbuf: add Curl_dyn_vaddf
Closes #6004
Diffstat (limited to 'docs/DYNBUF.md')
-rw-r--r-- | docs/DYNBUF.md | 6 |
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); |