bson_strdupv_printf (3) - Linux Manuals
bson_strdupv_printf: This function is like bson_strdup_printf() except takes a va_list of parameters.
Command to display bson_strdupv_printf
manual in Linux: $ man 3 bson_strdupv_printf
NAME
bson_strdupv_printf() - This function is like bson_strdup_printf() except takes a va_list of parameters.
SYNOPSIS
char *
bson_strdupv_printf (const char *format,
va_list args) BSON_GNUC_PRINTF (1, 0);
PARAMETERS
- format
-
A printf style format string.
- args
-
A va_list.
DESCRIPTION
This function is like
bson_strdup_printf(3)
except takes a va_list of parameters.
RETURNS
A newly allocated string that should be freed with bson_free().
COLOPHON
This page is part of libbson.
Please report any bugs at
https://jira.mongodb.org/browse/CDRIVER.
Pages related to bson_strdupv_printf
- bson_strdup (3) - Copies str into a new string. If str is NULL, then NULL is returned.
- bson_strdup_printf (3) - This function performs a printf style format but into a newly allocated string.
- bson_strerror_r (3) - This is a portability wrapper around strerror().
- bson_strfreev (3) - This will free each string in a NULL-terminated array of strings and then the array itself.
- bson_string_append (3) - Appends the ASCII or UTF-8 encoded string str to string. This is not suitable for embedding NULLs in strings.
- bson_string_append_c (3) - Appends c to the string builder string.
- bson_string_append_printf (3) - Like bson_string_append() but formats a printf style string and then appends that to string.
- bson_string_append_unichar (3) - Appends a unicode character to string. The character will be encoded into its multi-byte UTF-8 representation.
- bson_string_free (3) - Frees the bson_string_t structure and optionally the string itself.
- bson_string_new (3) - Creates a new string builder, which uses power-of-two growth of buffers. Use the various bson_string_append*() functions to append to the string.
- bson_string_t (3) - String Building Abstraction
- bson_string_truncate (3) - Truncates the string so that it is len bytes in length. This must be smaller or equal to the current length of the string.