diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-14 11:50:55 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-14 11:50:55 +0000 |
commit | b2a2b2dc1adca9f089c693b520978dc4dd0e70bf (patch) | |
tree | f8f5e507ca8ad28b9ea3363f073cc601d5e6c001 /include/irc_string.h | |
parent | ebb5967a19ee6abdd70a965ff8ca127df47f136f (diff) |
- added improved match() stolen from ircu
- fixed compile warning in m_module.c
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1653 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include/irc_string.h')
-rw-r--r-- | include/irc_string.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/irc_string.h b/include/irc_string.h index dee67df..3043e9e 100644 --- a/include/irc_string.h +++ b/include/irc_string.h @@ -31,17 +31,7 @@ extern int has_wildcards(const char *); extern int ircd_pcre_exec(const void *, const char *); extern void *ircd_pcre_compile(const char *, const char **); - -/* - * match - compare name with mask, mask may contain * and ? as wildcards - * match - returns 1 on successful match, 0 otherwise - * - * match_esc - compare with support for escaping chars - * match_chan - like match_esc with first character auto-escaped - */ extern int match(const char *, const char *); -extern int match_esc(const char *, const char *); -extern int match_chan(const char *, const char *); /* * collapse - collapse a string in place, converts multiple adjacent *'s |