blob: 9afbd39c5538d68d1b081afc899f5783ed4cfdae [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001#ifndef _STRLCPY_H
2#define _STRLCPY_H
Damien Millere413cba1999-10-28 14:12:54 +10003
4#include "config.h"
5#ifndef HAVE_STRLCPY
Damien Millerd4a8b7e1999-10-27 13:42:43 +10006size_t strlcpy(char *dst, const char *src, size_t siz);
Damien Millere413cba1999-10-28 14:12:54 +10007#endif /* !HAVE_STRLCPY */
8
Damien Millerd4a8b7e1999-10-27 13:42:43 +10009#endif /* _STRLCPY_H */