2021-08-17 12:33:00 +00:00
|
|
|
/*
|
2021-08-17 14:19:10 +00:00
|
|
|
* Public domain
|
|
|
|
* string.h compatibility shim
|
2021-08-17 12:33:00 +00:00
|
|
|
*/
|
|
|
|
|
2021-08-17 14:19:10 +00:00
|
|
|
#include_next <string.h>
|
2021-08-17 12:33:00 +00:00
|
|
|
|
2021-08-17 14:19:10 +00:00
|
|
|
#ifndef LIBCOMPAT_STRING_H
|
|
|
|
#define LIBCOMPAT_STRING_H
|
2021-08-17 12:33:00 +00:00
|
|
|
|
2021-08-17 14:19:10 +00:00
|
|
|
#include <sys/types.h>
|
2021-08-17 12:33:00 +00:00
|
|
|
|
2021-08-17 14:19:10 +00:00
|
|
|
#if defined(__sun) || defined(__hpux)
|
|
|
|
/* Some functions historically defined in string.h were placed in strings.h by
|
|
|
|
* SUS. Use the same hack as OS X and FreeBSD use to work around on Solaris and HPUX.
|
|
|
|
*/
|
|
|
|
#include <strings.h>
|
2021-08-17 12:33:00 +00:00
|
|
|
#endif
|
|
|
|
|
2021-08-17 14:19:10 +00:00
|
|
|
#ifndef HAVE_STRLCPY
|
|
|
|
size_t strlcpy(char *dst, const char *src, size_t siz);
|
2021-08-17 12:33:00 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|