OSDN Git Service

29d40f2f73d95525aa7f6aa3a6bc4a6dbf64f1db
[linuxjm/LDP_man-pages.git] / original / 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 .TH WCSTOIMAX 3 2003-11-01 "" "Linux Programmer's Manual"
24 .SH NAME
25 wcstoimax, wcstoumax \- convert wide-character string to integer
26 .SH SYNOPSIS
27 .nf
28 .B #include <stddef.h>
29 .br
30 .B #include <inttypes.h>
31 .sp
32 .BI "intmax_t wcstoimax(const wchar_t *" nptr ", wchar_t **" endptr \
33 ", int " base );
34 .br
35 .BI "uintmax_t wcstoumax(const wchar_t *" nptr ", wchar_t **" endptr \
36 ", int " base );
37 .fi
38 .SH DESCRIPTION
39 These functions are just like
40 .BR wcstol (3)
41 and
42 .BR wcstoul (3),
43 except that they return a value of type
44 .I intmax_t
45 and
46 .IR uintmax_t ,
47 respectively.
48 .SH "CONFORMING TO"
49 C99.
50 .SH "SEE ALSO"
51 .BR imaxabs (3),
52 .BR imaxdiv (3),
53 .BR strtoimax (3),
54 .BR strtoumax (3),
55 .\" FIXME . the pages referred to by the following xrefs are not yet written
56 .BR wcstol (3),
57 .BR wcstoul (3)