2004-05-16 14:58:40 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
|
|
* +------------------------------------+
|
|
|
|
*
|
2006-01-15 15:59:11 +00:00
|
|
|
* InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
|
2004-05-16 14:58:40 +00:00
|
|
|
* E-mail:
|
|
|
|
* <brain@chatspike.net>
|
|
|
|
* <Craig@chatspike.net>
|
|
|
|
*
|
|
|
|
* Written by Craig Edwards, Craig McLure, and others.
|
|
|
|
* This program is free but copyrighted software; see
|
|
|
|
* the file COPYING for details.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-01-23 19:45:57 +00:00
|
|
|
#include <string>
|
|
|
|
#include "inspircd_config.h"
|
|
|
|
|
|
|
|
void Delete(char* str,int pos);
|
|
|
|
void Insert(char* substr,char* str,int pos);
|
2004-04-24 18:15:37 +00:00
|
|
|
bool match(const char* literal, const char* mask);
|
2003-01-23 19:45:57 +00:00
|
|
|
|