aboutsummaryrefslogtreecommitdiff
path: root/contrib/libdiff/compat/include/string.h
blob: 75190903aba8076c7da469a56a00b98cc8825dc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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