X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fwildcard.h;h=196350134a55c4c5730dc4fc6b0327c3c42b1542;hb=17d91b065e98963451e595d7697357a40a1c4425;hp=02bc6342c92f3b8c2aa490c97afaaebefc2d30d6;hpb=f4a4901fee693791493c340fd380658a24d4cf26;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/wildcard.h b/include/wildcard.h index 02bc6342c..196350134 100644 --- a/include/wildcard.h +++ b/include/wildcard.h @@ -2,12 +2,9 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * * This program is free but copyrighted software; see * the file COPYING for details. * @@ -16,6 +13,7 @@ #include "inspircd_config.h" -bool match(const char* str, const char* mask); -bool match(const char *str, const char *mask, bool use_cidr_match); - +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);