kakoune/src/regex.cc
2016-02-04 23:54:22 +00:00

19 lines
213 B
C++

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