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 8907c8dd 2002-06-26 alex * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6 8907c8dd 2002-06-26 alex * der GNU General Public License (GPL), wie von der Free Software Foundation
7 8907c8dd 2002-06-26 alex * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8 8907c8dd 2002-06-26 alex * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9 8907c8dd 2002-06-26 alex * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10 8907c8dd 2002-06-26 alex * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
11 8907c8dd 2002-06-26 alex *
12 8907c8dd 2002-06-26 alex * $Id: match.h,v 1.1 2002/06/26 15:42:58 alex Exp $
13 8907c8dd 2002-06-26 alex *
14 8907c8dd 2002-06-26 alex * match.h: Wildcard Pattern Matching (Header)
15 8907c8dd 2002-06-26 alex */
16 8907c8dd 2002-06-26 alex
17 8907c8dd 2002-06-26 alex
18 8907c8dd 2002-06-26 alex #ifndef __match_h__
19 8907c8dd 2002-06-26 alex #define __match_h__
20 8907c8dd 2002-06-26 alex
21 8907c8dd 2002-06-26 alex
22 8907c8dd 2002-06-26 alex GLOBAL BOOLEAN Match PARAMS(( CHAR *Pattern, CHAR *String ));
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- */