The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

NAME

wcscat - concatenate two wide-character strings

SYNOPSIS

#include <wchar.h>

wchar_t *wcscat(wchar_t *ws1, const wchar_t *ws2);

DESCRIPTION

The wcscat() function appends a copy of the wide-character string pointed to by ws2 (including the terminating null wide-character code) to the end of the wide-character string pointed to by ws1. The initial wide-character code of ws2 overwrites the null wide-character code at the end of ws1. If copying takes place between objects that overlap, the behaviour is undefined.

RETURN VALUE

The wcscat() function returns s1; no return value is reserved to indicate an error.

ERRORS

No errors are defined.

EXAMPLES

None.

APPLICATION USAGE

None.

FUTURE DIRECTIONS

None.

SEE ALSO

wcsncat(), <wchar.h>.

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]