blob: 27c9e3ec833c23d552817c67d822df5b135eda00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef REVSTR_HPP_INCLUDED
# define REVSTR_HPP_INCLUDED
#include <string>
namespace utils
{
std::string revstr(const std::string& original);
}
#endif // REVSTR_HPP_INCLUDED
|