Blame


1 8907c8dd 2002-06-26 alex /*
2 8907c8dd 2002-06-26 alex * ngIRCd -- The Next Generation IRC Daemon
3 8907c8dd 2002-06-26 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 8907c8dd 2002-06-26 alex *
5 c7f07523 2002-12-12 alex * This program is free software; you can redistribute it and/or modify
6 c7f07523 2002-12-12 alex * it under the terms of the GNU General Public License as published by
7 c7f07523 2002-12-12 alex * the Free Software Foundation; either version 2 of the License, or
8 c7f07523 2002-12-12 alex * (at your option) any later version.
9 c7f07523 2002-12-12 alex * Please read the file COPYING, README and AUTHORS for more information.
10 8907c8dd 2002-06-26 alex *
11 61966a60 2006-10-06 fw * $Id: match.h,v 1.4 2006/10/06 21:23:47 fw Exp $
12 8907c8dd 2002-06-26 alex *
13 c7f07523 2002-12-12 alex * Wildcard pattern matching (header)
14 8907c8dd 2002-06-26 alex */
15 8907c8dd 2002-06-26 alex
16 8907c8dd 2002-06-26 alex
17 8907c8dd 2002-06-26 alex #ifndef __match_h__
18 8907c8dd 2002-06-26 alex #define __match_h__
19 8907c8dd 2002-06-26 alex
20 8907c8dd 2002-06-26 alex
21 61966a60 2006-10-06 fw GLOBAL bool Match PARAMS(( const char *Pattern, const char *String ));
22 d4eb55c7 2008-07-26 alex GLOBAL bool MatchCaseInsensitive PARAMS(( const char *Pattern, const char *searchme ));
23 8907c8dd 2002-06-26 alex
24 8907c8dd 2002-06-26 alex
25 8907c8dd 2002-06-26 alex #endif
26 8907c8dd 2002-06-26 alex
27 8907c8dd 2002-06-26 alex
28 8907c8dd 2002-06-26 alex /* -eof- */