* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
**************************************************************************
"int curl_mfprintf(FILE *" fd ", const char *" format ", ...);"
"int curl_msprintf(char *" buffer ", const char *" format ", ...);"
"int curl_msnprintf(char *" buffer ", size_t " maxlength ", const char *" format ", ...);"
"int curl_mvprintf(const char *" format ", va_list " args ");"
"int curl_mvfprintf(FILE *" fd ", const char *" format ", va_list " args ");"
"int curl_mvsprintf(char *" buffer ", const char *" format ", va_list " args ");"
"int curl_mvsnprintf(char *" buffer ", size_t " maxlength ", const char *" format ", va_list " args ");"
"char *curl_maprintf(const char *" format ", ...);"
"char *curl_mvaprintf(const char *" format ", va_list " args ");"
curl_mprintf() Normal printf() clone.
curl_mfprintf() Normal fprintf() clone.
curl_msprintf() Normal sprintf() clone.
curl_msnprintf() snprintf() clone. Many systems don't have this. It is just like sprintf but with an extra argument after the buffer that specifies the length of the target buffer.
curl_mvprintf() Normal vprintf() clone.
curl_mvfprintf() Normal vfprintf() clone.
curl_mvsprintf() Normal vsprintf() clone.
curl_mvsnprintf() vsnprintf() clone. Many systems don't have this. It is just like vsprintf but with an extra argument after the buffer that specifies the length of the target buffer.
curl_maprintf() Like printf() but returns the output string as a malloc()ed string. The returned string must be free()ed by the receiver.
curl_mvaprintf() Like curl_maprintf() but takes a va_list pointer argument instead of a variable amount of arguments.