]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspstring.h
'svn propset -R svn:eol-style CR *' Set to UNIX-style always. Binaries are auto skipp...
[user/henk/code/inspircd.git] / include / inspstring.h
1 /*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#ifndef __IN_INSPSTRING_H\r#define __IN_INSPSTRING_H\r\r#include "inspircd_config.h"\r#include <string.h>\r#include <cstddef>\r\r#ifndef HAS_STRLCPY\r/** strlcpy() implementation for systems that don't have it (linux) */\rCoreExport size_t strlcpy(char *dst, const char *src, size_t siz);\r/** strlcat() implementation for systems that don't have it (linux) */\rCoreExport size_t strlcat(char *dst, const char *src, size_t siz);\r#endif\r\r/** charlcat() will append one character to a string using the same\r * safety scemantics as strlcat().\r * @param x The string to operate on\r * @param y the character to append to the end of x\r * @param z The maximum allowed length for z including null terminator\r */\rCoreExport int charlcat(char* x,char y,int z);\r/** charremove() will remove all instances of a character from a string\r * @param mp The string to operate on\r * @param remove The character to remove\r */\rCoreExport bool charremove(char* mp, char remove);\r\r/** strnewdup() is an implemenetation of strdup() which calls operator new\r * rather than malloc to allocate the new string, therefore allowing it to\r * be hooked into the C++ memory manager, and freed with operator delete.\r * This is required for windows, where we override operators new and delete\r * to allow for global allocation between modules and the core.\r */\rinline char * strnewdup(const char * s1)\r{\r      size_t len = strlen(s1) + 1;\r   char * p = new char[len];\r      memcpy(p, s1, len);\r    return p;\r}\r\r#endif\r\r