diff options
Diffstat (limited to 'src/misc.c')
-rw-r--r-- | src/misc.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/misc.c b/src/misc.c index 2acbb6087..ff56e6c1f 100644 --- a/src/misc.c +++ b/src/misc.c @@ -209,35 +209,6 @@ const char *merge_args(int argc, char **argv) } /*************************************************************************/ - -/** - * match_wild: Case Senstive wild card search - * @param pattern To be matched - * @param str String in which the pattern is to be matched - * @return 1 if the string matches the pattern, 0 if not. - * NOTE: Deprecated by Anope::Match(). - */ -int match_wild(const char *pattern, const char *str) -{ - return Anope::Match(str, pattern, true); -} - -/*************************************************************************/ - -/** - * match_wild: Case Insenstive wild card search - * @param pattern To be matched - * @param str String in which the pattern is to be matched - * @return 1 if the string matches the pattern, 0 if not. - * NOTE: Deprecated by Anope::Match(). - */ -int match_wild_nocase(const char *pattern, const char *str) -{ - return Anope::Match(str, pattern, false); -} - -/*************************************************************************/ - /** * Process a string containing a number/range list in the form * "n1[-n2][,n3[-n4]]...", calling a caller-specified routine for each |