openssh-portable/openbsd-compat/strlcpy.h

13 lines
281 B
C
Raw Normal View History

/* $Id: strlcpy.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
#ifndef _BSD_STRLCPY_H
#define _BSD_STRLCPY_H
1999-10-28 06:12:54 +02:00
#include "config.h"
#ifndef HAVE_STRLCPY
#include <sys/types.h>
1999-10-27 05:42:43 +02:00
size_t strlcpy(char *dst, const char *src, size_t siz);
1999-10-28 06:12:54 +02:00
#endif /* !HAVE_STRLCPY */
#endif /* _BSD_STRLCPY_H */