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 c7f07523 2002-12-12 alex * $Id: match.h,v 1.2 2002/12/12 12:23:43 alex 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 8907c8dd 2002-06-26 alex GLOBAL BOOLEAN Match PARAMS(( CHAR *Pattern, CHAR *String ));
22 8907c8dd 2002-06-26 alex
23 8907c8dd 2002-06-26 alex
24 8907c8dd 2002-06-26 alex #endif
25 8907c8dd 2002-06-26 alex
26 8907c8dd 2002-06-26 alex
27 8907c8dd 2002-06-26 alex /* -eof- */