OSDN Git Service

c25b80af951a16d59bdb492b318c750f7980e288
[linuxjm/LDP_man-pages.git] / draft / man3 / wcsrchr.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 WCSRCHR 3 1999-07-25 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O wcsrchr \- search a wide character in a wide-character string
22 wcsrchr \- ワイド文字列中のワイド文字を探す
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "wchar_t *wcsrchr(const wchar_t *" wcs ", wchar_t " wc );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wcsrchr ()
34 .\"O function is the wide-character equivalent
35 .\"O of the
36 .\"O .BR strrchr (3)
37 .\"O function.
38 .\"O It searches the last occurrence of \fIwc\fP in the wide-character
39 .\"O string pointed to by \fIwcs\fP.
40 .BR wcsrchr ()
41 関数は、
42 .BR strrchr (3)
43 関数に対応するワイド文字関数である。
44 この関数は、\fIwcs\fP が指すワイド文字文字列中に \fIwc\fP が最後に現わ
45 れる位置を検索する。
46 .\"O .SH "RETURN VALUE"
47 .SH 返り値
48 .\"O The
49 .\"O .BR wcsrchr ()
50 .\"O function returns a pointer to the last occurrence of
51 .\"O \fIwc\fP in the wide-character string pointed to by \fIwcs\fP, or NULL if
52 .\"O \fIwc\fP does not occur in the string.
53 \fBwcsrchr\fP 関数は、\fIwcs\fP が指すワイド文字文字列中に \fIwc\fP が
54 最後に現われた位置を返す。この文字列に \fIwc\fP が含まれていなければ
55 NULL を返す。
56 .\"O .SH "CONFORMING TO"
57 .SH 準拠
58 C99.
59 .\"O .SH "SEE ALSO"
60 .SH 関連項目
61 .BR strrchr (3),
62 .BR wcschr (3)