1275970Scy#ifndef STRLCPY_INTERNAL_H_INCLUDED_
2275970Scy#define STRLCPY_INTERNAL_H_INCLUDED_
3275970Scy
4275970Scy#ifdef __cplusplus
5275970Scyextern "C" {
6275970Scy#endif
7275970Scy
8275970Scy#include "event2/event-config.h"
9275970Scy#include "evconfig-private.h"
10275970Scy
11275970Scy#ifndef EVENT__HAVE_STRLCPY
12275970Scy#include <string.h>
13275970Scysize_t event_strlcpy_(char *dst, const char *src, size_t siz);
14275970Scy#define strlcpy event_strlcpy_
15275970Scy#endif
16275970Scy
17275970Scy#ifdef __cplusplus
18275970Scy}
19275970Scy#endif
20275970Scy
21275970Scy#endif
22275970Scy
23