libfswatch
1.9.3
|
This namespace contains string manipulation functions. More...
Functions | |
string | vstring_from_format (const char *format, va_list args) |
Create a std::string using a printf() format and a va_list args . More... | |
string | string_from_format (const char *format,...) |
Create a std::string using a printf() format and varargs. More... | |
This namespace contains string manipulation functions.
std::string fsw::string_utils::string_from_format | ( | const char * | format, |
... | |||
) |
Create a std::string
using a printf()
format and varargs.
format | The printf() format. |
... | The arguments to format. |
std::string fsw::string_utils::vstring_from_format | ( | const char * | format, |
va_list | args | ||
) |
Create a std::string
using a printf()
format and a va_list
args
.
format | The printf() format. |
args | The arguments to format. |