1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef STRUTILS_HH #define STRUTILS_HH #include <string> namespace stuff { std::string ascii_tolower(const std::string& str); std::string trim(const std::string& str); } // namespace stuff #endif /* STRUTILS_HH */