2007-07-16 17:30:04 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
|
|
* +------------------------------------+
|
|
|
|
*
|
2009-01-02 18:16:05 +00:00
|
|
|
* InspIRCd: (C) 2002-2009 InspIRCd Development Team
|
2009-03-15 12:42:35 +00:00
|
|
|
* See: http://wiki.inspircd.org/Credits
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
|
|
|
* This program is free but copyrighted software; see
|
|
|
|
* the file COPYING for details.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IN_INSPSTRING_H
|
|
|
|
#define __IN_INSPSTRING_H
|
|
|
|
|
2008-02-03 23:20:20 +00:00
|
|
|
// This (inspircd_config) is needed as inspstring doesn't pull in the central header
|
2007-07-16 17:30:04 +00:00
|
|
|
#include "inspircd_config.h"
|
2008-06-12 21:04:37 +00:00
|
|
|
#include <cstring>
|
2008-02-03 23:20:20 +00:00
|
|
|
//#include <cstddef>
|
2007-07-16 17:30:04 +00:00
|
|
|
|
|
|
|
#ifndef HAS_STRLCPY
|
|
|
|
/** strlcpy() implementation for systems that don't have it (linux) */
|
|
|
|
CoreExport size_t strlcpy(char *dst, const char *src, size_t siz);
|
|
|
|
/** strlcat() implementation for systems that don't have it (linux) */
|
|
|
|
CoreExport size_t strlcat(char *dst, const char *src, size_t siz);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** charlcat() will append one character to a string using the same
|
|
|
|
* safety scemantics as strlcat().
|
|
|
|
* @param x The string to operate on
|
|
|
|
* @param y the character to append to the end of x
|
|
|
|
* @param z The maximum allowed length for z including null terminator
|
|
|
|
*/
|
|
|
|
CoreExport int charlcat(char* x,char y,int z);
|
|
|
|
/** charremove() will remove all instances of a character from a string
|
|
|
|
* @param mp The string to operate on
|
|
|
|
* @param remove The character to remove
|
|
|
|
*/
|
|
|
|
CoreExport bool charremove(char* mp, char remove);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|