2004-05-16 14:58:40 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
|
|
* +------------------------------------+
|
|
|
|
*
|
2006-12-15 22:18:59 +00:00
|
|
|
* InspIRCd: (C) 2002-2007 InspIRCd Development Team
|
|
|
|
* See: http://www.inspircd.org/wiki/index.php/Credits
|
|
|
|
*
|
2004-05-16 14:58:40 +00:00
|
|
|
* This program is free but copyrighted software; see
|
|
|
|
* the file COPYING for details.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-01-23 19:45:57 +00:00
|
|
|
#include "inspircd_config.h"
|
|
|
|
|
2007-05-19 15:56:42 +00:00
|
|
|
CoreExport bool match(const char *str, const char *mask);
|
|
|
|
CoreExport bool match(const char *str, const char *mask, bool use_cidr_match);
|
|
|
|
CoreExport bool match(bool case_sensitive, const char *str, const char *mask);
|
|
|
|
CoreExport bool match(bool case_sensitive, const char *str, const char *mask, bool use_cidr_match);
|