kakoune/src/regex.cc
2015-07-25 11:15:03 +01:00

20 lines
261 B
C++

#include "regex.hh"
#include "exception.hh"
namespace Kakoune
{
String option_to_string(const Regex& re)
{
const auto& str = re.str();
return {str.begin(), str.end()};
}
void option_from_string(StringView str, Regex& re)
{
re = Regex{str};
}
}