ngircd-tor/src/ngircd/match.h

29 lines
764 B
C
Raw Normal View History

2002-06-26 17:42:58 +02:00
/*
* ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
*
2002-12-12 13:23:43 +01:00
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information.
2002-06-26 17:42:58 +02:00
*
* $Id: match.h,v 1.4 2006/10/06 21:23:47 fw Exp $
2002-06-26 17:42:58 +02:00
*
2002-12-12 13:23:43 +01:00
* Wildcard pattern matching (header)
2002-06-26 17:42:58 +02:00
*/
#ifndef __match_h__
#define __match_h__
GLOBAL bool Match PARAMS(( const char *Pattern, const char *String ));
2008-06-13 06:54:05 +02:00
GLOBAL bool MatchCaseInsensitive PARAMS(( const char *Pattern, const char *searchme ));
2002-06-26 17:42:58 +02:00
#endif
/* -eof- */