curl_printf(3) | libcurl Manual | curl_printf(3) |
curl_maprintf, curl_mfprintf, curl_mprintf, curl_msnprintf, curl_msprintf curl_mvaprintf, curl_mvfprintf, curl_mvprintf, curl_mvsnprintf, curl_mvsprintf - formatted output conversion
#include <curl/mprintf.h>
int curl_mprintf(const char *format, ...);
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);
These are all functions that produce output according to a format string and given arguments. These are mostly clones of the well-known C-style functions and there will be no detailed explanation of all available formatting rules and usage here.
See this table for notable exceptions.
These functions will be removed from the public libcurl API in the future. Do not use them in any new programs or projects.
The curl_maprintf and curl_mvaprintf functions return a pointer to a newly allocated string, or NULL if it failed.
All other functions return the number of characters they actually outputted.
November 5, 2020 | libcurl 7.74.0 |