diff options
Diffstat (limited to 'include/inspstring.h')
-rw-r--r-- | include/inspstring.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/inspstring.h b/include/inspstring.h new file mode 100644 index 000000000..f13f098dd --- /dev/null +++ b/include/inspstring.h @@ -0,0 +1,11 @@ +#ifndef __IN_INSPSTRING_H +#define __IN_INSPSTRING_H + +#include "inspircd_config.h" + +#ifndef HAVE_STRLCPY +size_t strlcpy(char *dst, const char *src, size_t siz); +size_t strlcat(char *dst, const char *src, size_t siz); +#endif + +#endif |