summaryrefslogtreecommitdiff
path: root/include/inspstring.h
blob: c5a20e9e4509e5c79691c069b052fb557dd542bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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

#endif