xbps/include/strlcpy.h
2011-06-29 12:16:04 +02:00

11 lines
143 B
C

#ifndef STRLCPY_H
#define STRLCPY_H
#include <sys/types.h>
#ifndef HAVE_STRLCPY
size_t strlcpy(char *, const char *, size_t);
#endif
#endif