michael@0: #ifndef _STRLCPY_INTERNAL_H_ michael@0: #define _STRLCPY_INTERNAL_H_ michael@0: michael@0: #ifdef __cplusplus michael@0: extern "C" { michael@0: #endif michael@0: michael@0: #include "event2/event-config.h" michael@0: michael@0: #ifndef _EVENT_HAVE_STRLCPY michael@0: #include michael@0: size_t _event_strlcpy(char *dst, const char *src, size_t siz); michael@0: #define strlcpy _event_strlcpy michael@0: #endif michael@0: michael@0: #ifdef __cplusplus michael@0: } michael@0: #endif michael@0: michael@0: #endif michael@0: