|
|
@ -227,8 +227,8 @@ inline double isValidDouble (double v)
|
|
|
|
* \param str a string to transform to lower case
|
|
|
|
* \param str a string to transform to lower case
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
std::string toLower ( const char *str ); // Ascii only
|
|
|
|
std::string toLower ( const char *str ); // UTF-8
|
|
|
|
std::string toLower ( const std::string &str ); // Ascii only
|
|
|
|
std::string toLower ( const std::string &str ); // UTF-8
|
|
|
|
void toLower ( char *str ); // Ascii only
|
|
|
|
void toLower ( char *str ); // Ascii only
|
|
|
|
char toLower ( const char ch ); // convert only one character
|
|
|
|
char toLower ( const char ch ); // convert only one character
|
|
|
|
|
|
|
|
|
|
|
@ -236,8 +236,8 @@ char toLower ( const char ch ); // convert only one character
|
|
|
|
* \param a string to transform to upper case
|
|
|
|
* \param a string to transform to upper case
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// std::string toUpper ( const char *str ); // Ascii only
|
|
|
|
std::string toUpper ( const char *str ); // UTF-8
|
|
|
|
std::string toUpper ( const std::string &str); // Ascii only
|
|
|
|
std::string toUpper ( const std::string &str); // UTF-8
|
|
|
|
void toUpper ( char *str); // Ascii only
|
|
|
|
void toUpper ( char *str); // Ascii only
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|