wcslcpy.3bsd - Man Page

wide character string manipulation operations

Library

library “libbsd”

Synopsis

#include <wchar.h> (See libbsd(7) for include usage.)
size_t
wcslcat(wchar_t *s1, const wchar_t *s2, size_t n);

size_t
wcslcpy(wchar_t *s1, const wchar_t *s2, size_t n);

Description

The functions implement string manipulation operations over wide character strings. For a detailed description, refer to documents for the respective single-byte counterpart, such as strlcpy(3bsd).

See Also

strlcat(3bsd), strlcpy(3bsd).

Standards

wcslcat() and wcslcpy(), which are BSD extensions.

History

The wcslcpy() and wcslcat() functions first appeared in OpenBSD 3.8, NetBSD 1.6, FreeBSD 5.0 and DragonFly 2.1.

Referenced By

The man page wcslcat.3bsd(3) is an alias of wcslcpy.3bsd(3).

March 4, 2009