mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02: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 */
|