mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 15:22:34 -04:00
git-subtree-dir: contrib/libdiff git-subtree-mainline:f6d489f402git-subtree-split:9eb461aa4bReviewed by: imp Sponsored by: Klara, Inc.
16 lines
291 B
C
16 lines
291 B
C
/*
|
|
* 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
|