logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

wcslcat, wcslcpy, — wide character string manipulation operations

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).

History

The wcslcpy() and wcslcat() functions first appeared in OpenBSD 3.8, NetBSD 1.6, FreeBSD 5.0 and DragonFly 2.1. Debian March 4, 2009 wcslcpy(3bsd)

Library

Utility functions from BSD systems (libbsd, -lbsd)

Name

wcslcat, wcslcpy, — wide character string manipulation operations

See Also

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

Standards

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

Synopsis

#include<wchar.h> (See libbsd(7) for include usage.) size_twcslcat(wchar_t*s1, constwchar_t*s2, size_tn); size_twcslcpy(wchar_t*s1, constwchar_t*s2, size_tn);

See Also