//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- // file strcom.hpp #ifndef _STRCOM_HPP #define _STRCOM_HPP #include #include #include #include namespace strcom { std::string toLower (const std::string &); std::string toUpper (const std::string &); } #endif // _STRCOM_HPP // end of file __STRCOM_HPP