openssh/openbsd-compat/strlcpy.h

11 lines
223 B
C
Raw Normal View History

#ifndef _BSD_STRLCPY_H
#define _BSD_STRLCPY_H
1999-10-28 04:12:54 +00:00
#include "config.h"
#ifndef HAVE_STRLCPY
#include <sys/types.h>
1999-10-27 03:42:43 +00:00
size_t strlcpy(char *dst, const char *src, size_t siz);
1999-10-28 04:12:54 +00:00
#endif /* !HAVE_STRLCPY */
#endif /* _BSD_STRLCPY_H */