summaryrefslogtreecommitdiffstats
path: root/source/StringUtils.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-09-30 19:59:40 +0200
committermadmaxoft <github@xoft.cz>2013-10-04 13:10:29 +0200
commite31343297ee648c799a4d30b578259719f21ede5 (patch)
treecc04b88db435865c69cc360d0460e26031f704ad /source/StringUtils.cpp
parentImproved the HTTPFormParser code. (diff)
downloadcuberite-e31343297ee648c799a4d30b578259719f21ede5.tar
cuberite-e31343297ee648c799a4d30b578259719f21ede5.tar.gz
cuberite-e31343297ee648c799a4d30b578259719f21ede5.tar.bz2
cuberite-e31343297ee648c799a4d30b578259719f21ede5.tar.lz
cuberite-e31343297ee648c799a4d30b578259719f21ede5.tar.xz
cuberite-e31343297ee648c799a4d30b578259719f21ede5.tar.zst
cuberite-e31343297ee648c799a4d30b578259719f21ede5.zip
Diffstat (limited to 'source/StringUtils.cpp')
-rw-r--r--source/StringUtils.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/StringUtils.cpp b/source/StringUtils.cpp
index d53d25866..c62bb3acb 100644
--- a/source/StringUtils.cpp
+++ b/source/StringUtils.cpp
@@ -196,6 +196,23 @@ AString & StrToUpper(AString & s)
+AString & StrToLower(AString & s)
+{
+ AString::iterator i = s.begin();
+ AString::iterator end = s.end();
+
+ while (i != end)
+ {
+ *i = (char)tolower(*i);
+ ++i;
+ }
+ return s;
+}
+
+
+
+
+
int NoCaseCompare(const AString & s1, const AString & s2)
{
#ifdef _MSC_VER