opnsense-src/contrib/libdiff/compat/include/string.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
291 B
C
Raw Normal View History

/*
* string.h compatibility shim
* Public domain
*/
#include_next <string.h>
#ifndef DIFFCOMPAT_STRING_H
#define DIFFCOMPAT_STRING_H
#include <sys/types.h>
size_t strlcpy(char *dst, const char *src, size_t dstsize);
size_t strlcat(char *dst, const char *src, size_t dstsize);
#endif