Added silc_regex and silc_regex_buffer. Deprecated
[silc.git] / lib / silcutil / silcstrutil.c
index 914adc98f58659a7cc739afed2a19dbec508827e..3251c2b0a4d47c43255ca71746e17cf899ffedb4 100644 (file)
@@ -249,23 +249,6 @@ char *silc_string_regex_combine(const char *string1, const char *string2)
   return tmp;
 }
 
-/* Matches the two strings and returns TRUE if the strings match. */
-
-int silc_string_regex_match(const char *regex, const char *string)
-{
-  SilcRegexStruct preg;
-  SilcBool ret;
-
-  if (!silc_regex_compile(&preg, regex, 0))
-    return FALSE;
-
-  ret = silc_regex_match(&preg, string, 0, NULL, 0);
-
-  silc_regex_free(&preg);
-
-  return ret;
-}
-
 /* Do regex match to the two strings `string1' and `string2'. If the
    `string2' matches the `string1' this returns TRUE. */