inspircd/include/inspstring.h
2006-08-10 14:43:29 +00:00

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