23 static void toUpper(std::string &s);
29 static void toLower(std::string &s);
36 static std::string
toupper(
const std::string &s);
43 static std::string
tolower(
const std::string &s);
generic utils functions (e.g., string manipulation)
Definition: utils.h:17
static std::string tolower(const std::string &s)
returns a lowerized version of the passed string
Definition: utils.cpp:52
static void toLower(std::string &s)
Lowerizes the passed string.
Definition: utils.cpp:39
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13
static std::string toupper(const std::string &s)
returns a capitalized version of the passed string
Definition: utils.cpp:45
static void toUpper(std::string &s)
Capitalizes the passed string.
Definition: utils.cpp:33