dynbuf: add Curl_dyn_vaddf

Closes #6004
This commit is contained in:
Daniel Stenberg 2020-09-23 09:21:36 +02:00
parent 7e8561e030
commit f74afa40f8
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
3 changed files with 30 additions and 8 deletions

View file

@ -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);