wmemsetのヘルプ・マニュアル
日本語 英語
wmemset --help
man wmemset
WMEMSET(3) Linux Programmer’s Manual WMEMSET(3)
名前
wmemset - ワイド文字の配列を定数のワイド文字で埋める
書式
#include
wchar_t *wmemset(wchar_t *wcs, wchar_t wc, size_t n);
説明
wmemset() 関数は、 memset(3) 関数に対応するワイド文字関数である。この関
数は、memset を先頭とする n 個のワイド文字の配列を、ワイド文字 wc の n
個のコピーで埋める。
返り値
wmemset() は wcs を返す。
準拠
C99.
関連項目
memset(3)
GNU 1999-07-25 WMEMSET(3)
WMEMSET(3) Linux Programmer’s Manual WMEMSET(3)
NAME
wmemset - fill an array of wide-characters with a constant wide charac-
ter
SYNOPSIS
#include
wchar_t *wmemset(wchar_t *wcs, wchar_t wc, size_t n);
DESCRIPTION
The wmemset() function is the wide-character equivalent of the mem-
set(3) function. It fills the array of n wide-characters starting at
wcs with n copies of the wide character wc.
RETURN VALUE
wmemset() returns wcs.
CONFORMING TO
C99.
SEE ALSO
memset(3)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU 1999-07-25 WMEMSET(3)