summaryrefslogtreecommitdiff
path: root/src/common/string_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/string_util.h')
-rw-r--r--src/common/string_util.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/common/string_util.h b/src/common/string_util.h
index b1118816e..16ce39bc1 100644
--- a/src/common/string_util.h
+++ b/src/common/string_util.h
@@ -12,12 +12,13 @@
12 12
13#include "common/common.h" 13#include "common/common.h"
14 14
15/// Make a string lowercase 15namespace Common {
16 16
17std::string LowerStr(std::string str); 17/// Make a string lowercase
18std::string ToLower(std::string str);
18 19
19/// Make a string uppercase 20/// Make a string uppercase
20std::string UpperStr(std::string str); 21std::string ToUpper(std::string str);
21 22
22std::string StringFromFormat(const char* format, ...); 23std::string StringFromFormat(const char* format, ...);
23// Cheap! 24// Cheap!
@@ -112,3 +113,5 @@ inline std::string UTF8ToTStr(const std::string& str)
112#endif 113#endif
113 114
114#endif 115#endif
116
117}