1WCSNCAT(3)                 Linux Programmer's Manual                WCSNCAT(3)
2
3
4

NAME

6       wcsncat - concatenate two wide-character strings
7

SYNOPSIS

9       #include <wchar.h>
10
11       wchar_t *wcsncat(wchar_t *dest, const wchar_t *src, size_t n);
12

DESCRIPTION

14       The  wcsncat()  function  is the wide-character equivalent of the strn‐
15       cat() function.  It copies at most n wide  characters  from  the  wide-
16       character  string  pointed  to  by src to the end of the wide-character
17       string pointed to by dest, and adds a terminating L'\0' character.
18
19       The strings may not overlap.
20
21       The  programmer  must  ensure  that  there  is  room   for   at   least
22       wcslen(dest)+n+1 wide characters at dest.
23

RETURN VALUE

25       wcsncat() returns dest.
26

CONFORMING TO

28       C99.
29

SEE ALSO

31       strncat(3), wcscat(3)
32
33
34
35GNU                               1999-07-25                        WCSNCAT(3)
Impressum