chiark / gitweb /
Reapply patches
[pcre3.git] / pcrecpp.cc
index d09c9abc51682aef5cdb66ac839916a48a0f9dd7..728b074f815628bf78038a3d5c905840db6e1cf1 100644 (file)
@@ -80,6 +80,12 @@ static const string empty_string;
 // If the user doesn't ask for any options, we just use this one
 static RE_Options default_options;
 
+// PCRE6.x compatible API
+void RE::Init(const char *c_pat, const RE_Options* options) {
+  const string cxx_pat(c_pat);
+  Init(cxx_pat, options);
+}
+
 void RE::Init(const string& pat, const RE_Options* options) {
   pattern_ = pat;
   if (options == NULL) {