1999-10-27 05:42:43 +02:00
|
|
|
#ifndef _STRLCPY_H
|
|
|
|
#define _STRLCPY_H
|
1999-10-28 06:12:54 +02:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef HAVE_STRLCPY
|
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 */
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
#endif /* _STRLCPY_H */
|