summaryrefslogtreecommitdiffstats
path: root/includes/strcom.hpp
blob: bdab939e2e339bc1c77506a93999bde0fa9728d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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