X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fwildcard.h;h=196350134a55c4c5730dc4fc6b0327c3c42b1542;hb=17d91b065e98963451e595d7697357a40a1c4425;hp=f971d7b3464913da7f0e52c29842569a8681f38a;hpb=696ee9ff66bb94be2229bfa9c3dc288affc38a72;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/wildcard.h b/include/wildcard.h index f971d7b34..196350134 100644 --- a/include/wildcard.h +++ b/include/wildcard.h @@ -13,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);