OSDN Git Service

da1933c0cc5fbb312d1f1590bdbbc65ab578cfb2
[linuxjm/LDP_man-pages.git] / draft / man3 / wcspbrk.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" References consulted:
9 .\"   GNU glibc-2 source code and manual
10 .\"   Dinkumware C library reference http://www.dinkumware.com/
11 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
12 .\"   ISO/IEC 9899:1999
13 .\"
14 .\" About this Japanese page, please contact to JM Project <JM@linux.or.jp>
15 .\" Translated Sat Oct 23 15:19:34 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH WCSPBRK 3 1999-07-25 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O wcspbrk \- search a wide-character string for any of a set of wide characters
22 wcspbrk \- ワイド文字列から、与えられたワイド文字集合に含まれる文字を検索する
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "wchar_t *wcspbrk(const wchar_t *" wcs ", const wchar_t *" accept );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wcspbrk ()
34 .\"O function is the wide-character equivalent
35 .\"O of the
36 .\"O .BR strpbrk (3)
37 .\"O function.
38 .\"O It searches for the first occurrence in the wide-character
39 .\"O string pointed to by \fIwcs\fP of any of the
40 .\"O characters in the wide-character
41 .\"O string pointed to by \fIaccept\fP.
42 .BR wcspbrk ()
43 関数は、
44 .BR strpbrk (3)
45 関数に対応するワイド文字関数である。
46 この関数は、\fIwcs\fP が指すワイド文字文字列において、\fIaccept\fP が
47 示すワイド文字文字列のいずれかの文字が最初に現われる位置を検索する。
48 .\"O .SH "RETURN VALUE"
49 .SH 返り値
50 .\"O The
51 .\"O .BR wcspbrk ()
52 .\"O function returns a pointer to the first occurrence in
53 .\"O \fIwcs\fP of any of the characters listed in \fIaccept\fP.
54 .\"O If \fIwcs\fP
55 .\"O contains none of these characters, NULL is returned.
56 .BR wcspbrk ()
57 関数は、\fIaccept\fP に列挙された文字のいずれかが
58 \fIwcs\fP 中に最初に現われた位置へのポインタを返す。このような文字が
59 \fIwcs\fP に含まれない場合は、NULL が返される。
60 .\"O .SH "CONFORMING TO"
61 .SH 準拠
62 C99.
63 .\"O .SH "SEE ALSO"
64 .SH 関連項目
65 .BR strpbrk (3),
66 .BR wcschr (3),
67 .BR wcscspn (3)