mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
ServerConfig takes InspIRCd pointer in its constructor git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4832 e03df62e-2008-0410-955e-edbf42e46eb7
16 lines
326 B
C
16 lines
326 B
C
#ifndef __IN_INSPSTRING_H
|
|
#define __IN_INSPSTRING_H
|
|
|
|
#include "inspircd_config.h"
|
|
#include <cstddef>
|
|
|
|
#ifndef HAS_STRLCPY
|
|
size_t strlcpy(char *dst, const char *src, size_t siz);
|
|
size_t strlcat(char *dst, const char *src, size_t siz);
|
|
#endif
|
|
|
|
int charlcat(char* x,char y,int z);
|
|
bool charremove(char* mp, char remove);
|
|
|
|
#endif
|