mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-01 01:36:11 +08:00
10 lines
188 B
C
10 lines
188 B
C
#ifndef _STRLCPY_H
|
|
#define _STRLCPY_H
|
|
|
|
#include "config.h"
|
|
#ifndef HAVE_STRLCPY
|
|
size_t strlcpy(char *dst, const char *src, size_t siz);
|
|
#endif /* !HAVE_STRLCPY */
|
|
|
|
#endif /* _STRLCPY_H */
|