summaryrefslogtreecommitdiff
path: root/shared/zstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/zstring.h')
-rw-r--r--shared/zstring.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/shared/zstring.h b/shared/zstring.h
index d0be30bf..cb047e15 100644
--- a/shared/zstring.h
+++ b/shared/zstring.h
@@ -52,7 +52,7 @@ public:
#ifdef FFS_WIN
int CmpNoCase(const DefaultChar* other) const;
int CmpNoCase(const Zstring& other) const;
- Zstring& MakeLower();
+ Zstring& MakeUpper();
#endif
int Cmp(const DefaultChar* other) const;
int Cmp(const Zstring& other) const;
@@ -134,6 +134,28 @@ template <class T>
Zstring numberToZstring(const T& number); //convert number to Zstring
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
//#######################################################################################
//begin of implementation
bgstack15