]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/wildcard.h
Fix double printing of 'setting log file' and 'setting config file' paths.
[user/henk/code/inspircd.git] / include / wildcard.h
index fc73c2d2a5f3048cfec2b48f544e273ce2dcabd2..196350134a55c4c5730dc4fc6b0327c3c42b1542 100644 (file)
@@ -1,7 +1,19 @@
-#include <string>
-#include "inspircd_config.h"
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  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.
+ *
+ * ---------------------------------------------------
+ */
 
-void Delete(char* str,int pos);
-void Insert(char* substr,char* str,int pos);
-bool match(const char* literal, const char* mask);
+#include "inspircd_config.h"
 
+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);