Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/libdiff/compat/include/string.h
35147 views
1
/*
2
* string.h compatibility shim
3
* Public domain
4
*/
5
6
#include_next <string.h>
7
8
#ifndef DIFFCOMPAT_STRING_H
9
#define DIFFCOMPAT_STRING_H
10
11
#include <sys/types.h>
12
13
size_t strlcpy(char *dst, const char *src, size_t dstsize);
14
size_t strlcat(char *dst, const char *src, size_t dstsize);
15
16
#endif
17
18