Canola
0.8.D001
|
Go to the source code of this file.
Functions | |
std::string | std_string_printf (const char *fmt,...) |
std::string | std_string_printf_v (const char *fmt, va_list ap) |
std::string std_string_printf | ( | const char * | fmt, |
... | |||
) |
The std_string_printf function is used to take a format string and turn it into a C++ string.
fmt | The format of the result, and describes ther number and types of the remaining arguments. |
Definition at line 24 of file std_string_printf.cc.
std::string std_string_printf_v | ( | const char * | fmt, |
va_list | ap | ||
) |
The std_string_printf_v function is used to take a format string and turn it into a C++ string.
fmt | The format of the result, and describes ther number and types of the remaining arguments. |
ap | The rest of the arguments. |
Definition at line 35 of file std_string_printf.cc.