1WMEMSET(3) Linux Programmer's Manual WMEMSET(3)
2
3
4
6 wmemset - fill an array of wide-characters with a constant wide charac‐
7 ter
8
10 #include <wchar.h>
11
12 wchar_t *wmemset(wchar_t *wcs, wchar_t wc, size_t n);
13
15 The wmemset() function is the wide-character equivalent of the mem‐
16 set(3) function. It fills the array of n wide-characters starting at
17 wcs with n copies of the wide character wc.
18
20 wmemset() returns wcs.
21
23 C99.
24
26 memset(3)
27
29 This page is part of release 3.22 of the Linux man-pages project. A
30 description of the project, and information about reporting bugs, can
31 be found at http://www.kernel.org/doc/man-pages/.
32
33
34
35GNU 1999-07-25 WMEMSET(3)