OSDN Git Service

901eed8e249faba8e993c59b25a2ffbabdde356d
[linuxjm/LDP_man-pages.git] / draft / man3 / wmemchr.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 Tue Oct 26 00:03:46 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH WMEMCHR 3 1999-07-25 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O wmemchr \- search a wide character in a wide-character array
22 wmemchr \- ワイド文字の配列からワイド文字を探す
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "wchar_t *wmemchr(const wchar_t *" s ", wchar_t " c ", size_t " n );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wmemchr ()
34 .\"O function is the wide-character equivalent of the
35 .\"O .BR memchr (3)
36 .\"O function.
37 .\"O It searches the \fIn\fP wide characters starting at \fIs\fP for
38 .\"O the first occurrence of the wide character \fIc\fP.
39 .BR wmemchr ()
40 関数は、
41 .BR memchr (3)
42 関数に対応するワイド文字関数である。
43 この関数は、\fIs\fP を先頭とする \fIn\fP 個のワイド文字の中から、最初
44 にワイド文字 \fIc\fP が現われる場所を探す。
45 .\"O .SH "RETURN VALUE"
46 .SH 返り値
47 .\"O The
48 .\"O .BR wmemchr ()
49 .\"O function returns a pointer to the first occurrence of \fIc\fP
50 .\"O among the \fIn\fP wide characters starting at \fIs\fP, or NULL if \fIc\fP does
51 .\"O not occur among these.
52 .BR wmemchr ()
53 関数は、\fIs\fP を先頭とする \fIn\fP 個のワイド文字の中
54 において最初に \fIc\fP が現われる場所へのポインタを返す。\fIc\fP が現
55 われなかった場合には NULL を返す。
56 .\"O .SH "CONFORMING TO"
57 .SH 準拠
58 C99.
59 .\"O .SH "SEE ALSO"
60 .SH 関連項目
61 .BR memchr (3),
62 .BR wcschr (3)