Changeset 1285 for cpp/common/Convert.h


Ignore:
Timestamp:
12/06/23 03:27:30 (19 months ago)
Author:
Maciej Komosinski
Message:

Added toLowerCase/toUpperCase for UTF-8 strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/common/Convert.h

    r1028 r1285  
    2222public:
    2323        static int toInt(string s);
     24        static int toInt_HexIf0x(string s);
    2425        static float toFloat(string s);
    2526        static string toLowerCase(string s);
    2627        static string toUpperCase(string s);
     28        static string toLowerCaseUTF8(string s);
     29        static string toUpperCaseUTF8(string s);
    2730        static char toLowerCase(char c);
    2831        static char toUpperCase(char c);
Note: See TracChangeset for help on using the changeset viewer.