diff options
Diffstat (limited to 'source/StringUtils.h')
-rw-r--r-- | source/StringUtils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/StringUtils.h b/source/StringUtils.h index 908c725ab..dbf553773 100644 --- a/source/StringUtils.h +++ b/source/StringUtils.h @@ -27,6 +27,9 @@ extern AString & AppendVPrintf(AString & str, const char * format, va_list args) /// Output the formatted text into the string extern AString & Printf (AString & str, const char * format, ...); +/// Output the formatted text into string, return string by value +extern AString Printf(const char * format, ...); + /// Add the formatted string to the existing data in the string extern AString & AppendPrintf (AString & str, const char * format, ...); |