Blob


1 /*
2 * string.h compatibility shim
3 * Public domain
4 */
6 #include_next <string.h>
8 #ifndef DIFFCOMPAT_STRING_H
9 #define DIFFCOMPAT_STRING_H
11 #include <sys/types.h>
13 size_t strlcpy(char *dst, const char *src, size_t dstsize);
14 size_t strlcat(char *dst, const char *src, size_t dstsize);
16 #endif