1WCSLCPY(3bsd) LOCAL WCSLCPY(3bsd)
2
4 wcslcat, wcslcpy, — wide character string manipulation operations
5
7 Utility functions from BSD systems (libbsd, -lbsd)
8
10 #include <wchar.h>
11 (See libbsd(7) for include usage.)
12
13 size_t
14 wcslcat(wchar_t *s1, const wchar_t *s2, size_t n);
15
16 size_t
17 wcslcpy(wchar_t *s1, const wchar_t *s2, size_t n);
18
20 The functions implement string manipulation operations over wide charac‐
21 ter strings. For a detailed description, refer to documents for the
22 respective single-byte counterpart, such as strlcpy(3bsd).
23
25 strlcat(3bsd), strlcpy(3bsd).
26
28 wcslcat() and wcslcpy(), which are BSD extensions.
29
30BSD March 4, 2009 BSD