OSDN Git Service

107c8ea070f510d0a14759d24ff31f289c364d43
[linuxjm/LDP_man-pages.git] / draft / man3 / wcstoimax.3
1 .\" Copyright (c) 2003 Andries Brouwer (aeb@cwi.nl)
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 .\" The GNU General Public License's references to "object code"
9 .\" and "executables" are to be interpreted as the output of any
10 .\" document formatting or typesetting system, including
11 .\" intermediate and printed output.
12 .\"
13 .\" This manual is distributed in the hope that it will be useful,
14 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
15 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 .\" GNU General Public License for more details.
17 .\"
18 .\" You should have received a copy of the GNU General Public
19 .\" License along with this manual; if not, write to the Free
20 .\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
21 .\" USA.
22 .\"
23 .\" Japanese Version Copyright (c) 2004 Yuichi SATO
24 .\"         all rights reserved.
25 .\" Translated Sat Sep 11 07:57:58 JST 2004
26 .\"         by Yuichi SATO <ysato444@yahoo.co.jp>
27 .\"
28 .TH WCSTOIMAX 3 2003-11-01 "" "Linux Programmer's Manual"
29 .\"O .SH NAME
30 .SH 名前
31 .\"O wcstoimax, wcstoumax \- convert wide-character string to integer
32 wcstoimax, wcstoumax \- ワイド文字文字列を整数に変換する
33 .\"O .SH SYNOPSIS
34 .SH 書式
35 .nf
36 .B #include <stddef.h>
37 .br
38 .B #include <inttypes.h>
39 .sp
40 .BI "intmax_t wcstoimax(const wchar_t *" nptr ", wchar_t **" endptr \
41 ", int " base );
42 .br
43 .BI "uintmax_t wcstoumax(const wchar_t *" nptr ", wchar_t **" endptr \
44 ", int " base );
45 .fi
46 .\"O .SH DESCRIPTION
47 .SH 説明
48 .\"O These functions are just like
49 .\"O .BR wcstol (3)
50 .\"O and
51 .\"O .BR wcstoul (3),
52 .\"O except that they return a value of type
53 .\"O .I intmax_t
54 .\"O and
55 .\"O .IR uintmax_t ,
56 .\"O respectively.
57 これらの関数はちょうど
58 .BR wcstol (3)
59
60 .BR wcstoul (3)
61 に似ているが、それぞれ
62 .I intmax_t
63
64 .I uintmax_t
65 型の値を返す。
66 .\"O .SH "CONFORMING TO"
67 .SH 準拠
68 C99.
69 .\"O .SH "SEE ALSO"
70 .SH 関連項目
71 .BR imaxabs (3),
72 .BR imaxdiv (3),
73 .BR strtoimax (3),
74 .BR strtoumax (3),
75 .\" FIXME . the pages referred to by the following xrefs are not yet written
76 .BR wcstol (3),
77 .BR wcstoul (3)