diff options
Diffstat (limited to 'src/common/string_util.h')
| -rw-r--r-- | src/common/string_util.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/string_util.h b/src/common/string_util.h index ba4cd363e..b1118816e 100644 --- a/src/common/string_util.h +++ b/src/common/string_util.h | |||
| @@ -13,10 +13,11 @@ | |||
| 13 | #include "common/common.h" | 13 | #include "common/common.h" |
| 14 | 14 | ||
| 15 | /// Make a string lowercase | 15 | /// Make a string lowercase |
| 16 | void LowerStr(char* str); | 16 | |
| 17 | std::string LowerStr(std::string str); | ||
| 17 | 18 | ||
| 18 | /// Make a string uppercase | 19 | /// Make a string uppercase |
| 19 | void UpperStr(char* str); | 20 | std::string UpperStr(std::string str); |
| 20 | 21 | ||
| 21 | std::string StringFromFormat(const char* format, ...); | 22 | std::string StringFromFormat(const char* format, ...); |
| 22 | // Cheap! | 23 | // Cheap! |