2
0
mirror of https://github.com/inspircd/inspircd.git synced 2025-03-21 00:19:02 -04:00
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