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

NAME

6       wcscpy - copy a wide character string
7

SYNOPSIS

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

DESCRIPTION

14       The  wcscpy() function is the wide-character equivalent of the strcpy()
15       function. It copies the  wide  character  string  pointed  to  by  src,
16       including  the  terminating L'\0' character, to the array pointed to by
17       dest.
18
19       The strings may not overlap.
20
21       The  programmer  must  ensure  that  there  is  room   for   at   least
22       wcslen(src)+1 wide characters at dest.
23

RETURN VALUE

25       wcscpy() returns dest.
26

CONFORMING TO

28       C99.
29

SEE ALSO

31       strcpy(3), wcpcpy(3), wcscat(3), wcsdup(3), wmemcpy(3)
32
33
34
35GNU                               1999-07-25                         WCSCPY(3)
Impressum