wcspbrkのヘルプ・マニュアル
日本語 英語
wcspbrk --help
man wcspbrk
WCSPBRK(3) Linux Programmer’s Manual WCSPBRK(3)
名前
wcspbrk - ワイド文字列から、与えられたワイド文字集合に含まれる文字を検
索する
書式
#include
wchar_t *wcspbrk(const wchar_t *wcs, const wchar_t *accept);
説明
wcspbrk() 関数は、 strpbrk(3) 関数に対応するワイド文字関数である。こ の
関数は、wcs が指すワイド文字文字列において、accept が示すワイド文字文字
列のいずれかの文字が最初に現われる位置を検索する。
返り値
wcspbrk() 関数は、accept に列挙された文字のいずれかが wcs 中に最初に 現
わ れ た位置へのポインタを返す。このような文字が wcs に含まれない場合は
、NULL が返される。
準拠
C99.
関連項目
strpbrk(3), wcschr(3), wcscspn(3)
GNU 1999-07-25 WCSPBRK(3)
WCSPBRK(3) Linux Programmer’s Manual WCSPBRK(3)
NAME
wcspbrk - search a wide-character string for any of a set of wide char-
acters
SYNOPSIS
#include
wchar_t *wcspbrk(const wchar_t *wcs, const wchar_t *accept);
DESCRIPTION
The wcspbrk() function is the wide-character equivalent of the strp-
brk(3) function. It searches for the first occurrence in the wide-
character string pointed to by wcs of any of the characters in the
wide-character string pointed to by accept.
RETURN VALUE
The wcspbrk() function returns a pointer to the first occurrence in wcs
of any of the characters listed in accept. If wcs contains none of
these characters, NULL is returned.
CONFORMING TO
C99.
SEE ALSO
strpbrk(3), wcschr(3), wcscspn(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 WCSPBRK(3)