|
Source-highlight Library
|
generic utils functions (e.g., string manipulation) More...
#include <utils.h>
Static Public Member Functions | |
| static void | toUpper (std::string &s) |
| Capitalizes the passed string. | |
| static void | toLower (std::string &s) |
| Lowerizes the passed string. | |
| static std::string | toupper (const std::string &s) |
| returns a capitalized version of the passed string | |
| static std::string | tolower (const std::string &s) |
| returns a lowerized version of the passed string | |
generic utils functions (e.g., string manipulation)
| void srchilite::Utils::toLower | ( | std::string & | s | ) | [static] |
Lowerizes the passed string.
| s | the string to lowerize |
| std::string srchilite::Utils::tolower | ( | const std::string & | s | ) | [static] |
returns a lowerized version of the passed string
| s | the string to lowerize |
| void srchilite::Utils::toUpper | ( | std::string & | s | ) | [static] |
Capitalizes the passed string.
| s | the string to capitalize |
| std::string srchilite::Utils::toupper | ( | const std::string & | s | ) | [static] |
returns a capitalized version of the passed string
| s | the string to capitalize |