OSDN Git Service

2ae4e5d6c64bdba40629802ca4e5b98d4e313cc7
[linuxjm/LDP_man-pages.git] / draft / man3 / wcschr.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 Sun Oct 17 21:56:31 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH WCSCHR 3 1999-07-25 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O wcschr \- search a wide character in a wide-character string
22 wcschr \- ワイド文字文字列中のワイド文字を検索する
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "wchar_t *wcschr(const wchar_t *" wcs ", wchar_t " wc );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wcschr ()
34 .\"O function is the wide-character equivalent
35 .\"O of the
36 .\"O .BR strchr (3)
37 .\"O function.
38 .\"O It searches the first occurrence of \fIwc\fP in the wide-character
39 .\"O string pointed to by \fIwcs\fP.
40 .BR wcschr ()
41 関数は、
42 .BR strchr (3)
43 関数に対応するワイド文字関数である。
44 この関数は、\fIwcs\fP が指すワイド文字文字列の中で最初に現われる \fIwc\fP を検索する。
45 .\"O.SH "RETURN VALUE"
46 .SH 返り値
47 .\"O The
48 .\"O .BR wcschr ()
49 .\"O function returns a pointer to the first occurrence of
50 .\"O \fIwc\fP in the wide-character string pointed to by \fIwcs\fP, or NULL if
51 .\"O \fIwc\fP does not occur in the string.
52 .BR wcschr ()
53 関数は、\fIwcs\fP が指すワイド文字文字列の中で最初に現われた
54 \fIwc\fP へのポインタを返す。\fIwc\fP が文字列中に現われなかった場合は
55 NULL を返す。
56 .\"O .SH "CONFORMING TO"
57 .SH 準拠
58 C99.
59 .\"O .SH "SEE ALSO"
60 .SH 関連項目
61 .BR strchr (3),
62 .BR wcspbrk (3),
63 .BR wcsrchr (3),
64 .BR wcsstr (3),
65 .BR wmemchr (3)