#ifndef REVSTR_HPP_INCLUDED
# define REVSTR_HPP_INCLUDED

#include <string>

namespace utils
{
  std::string revstr(const std::string& original);
}

#endif // REVSTR_HPP_INCLUDED