X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fwildcard.h;h=196350134a55c4c5730dc4fc6b0327c3c42b1542;hb=17d91b065e98963451e595d7697357a40a1c4425;hp=936bd9e23589984f8f01e2d1d49ff2d81c53d006;hpb=11376014e3b8395c46366c7395b0daeddef8ceda;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/wildcard.h b/include/wildcard.h index 936bd9e23..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,5 +13,7 @@ #include "inspircd_config.h" -bool match(const char* str, const char* mask); - +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);