aboutsummaryrefslogtreecommitdiffhomepage
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 b1118816..16ce39bc 100644
--- a/src/common/string_util.h
+++ b/src/common/string_util.h
@@ -12,12 +12,13 @@
#include "common/common.h"
-/// Make a string lowercase
+namespace Common {
-std::string LowerStr(std::string str);
+/// Make a string lowercase
+std::string ToLower(std::string str);
/// Make a string uppercase
-std::string UpperStr(std::string str);
+std::string ToUpper(std::string str);
std::string StringFromFormat(const char* format, ...);
// Cheap!
@@ -112,3 +113,5 @@ inline std::string UTF8ToTStr(const std::string& str)
#endif
#endif
+
+}