diff options
Diffstat (limited to 'includes/strcom.hpp')
-rw-r--r-- | includes/strcom.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/includes/strcom.hpp b/includes/strcom.hpp new file mode 100644 index 0000000..bdab939 --- /dev/null +++ b/includes/strcom.hpp @@ -0,0 +1,22 @@ +//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- + +// file strcom.hpp + +#ifndef _STRCOM_HPP +#define _STRCOM_HPP + +#include <iostream> +#include <iomanip> +#include <string> +#include <algorithm> + +namespace strcom { + + std::string toLower (const std::string &); + std::string toUpper (const std::string &); + +} + +#endif // _STRCOM_HPP + +// end of file __STRCOM_HPP |