August 2010
Intermediate to advanced
526 pages
23h 39m
English
sqlite3_vmprintf() — Format and allocate a string
char* sqlite3_vmprintf( const char* format, va_list addl_args );
format
An sqlite3_snprintf() style message
formatting string.
addl_args
A C var-arg list of arguments.
A newly allocated string built from the given parameters.
This function is nearly identical to sqlite3_mprintf(), but it takes a C var-arg
list, rather than a variable number of function parameters. This
can be used to build application-specific printf() style functions.
Read now
Unlock full access