]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/wcstoimax.3
getent.1, _syscall.2, acct.2, adjtimex.2, bdflush.2, brk.2, cacheflush.2, getsid...
[thirdparty/man-pages.git] / man3 / wcstoimax.3
CommitLineData
fea681da
MK
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
c715f741
MK
19.\" License along with this manual; if not, see
20.\" <http://www.gnu.org/licenses/>.
fea681da
MK
21.\"
22.TH WCSTOIMAX 3 2003-11-01 "" "Linux Programmer's Manual"
23.SH NAME
24wcstoimax, wcstoumax \- convert wide-character string to integer
25.SH SYNOPSIS
26.nf
27.B #include <stddef.h>
28.br
29.B #include <inttypes.h>
30.sp
3d54a910
MK
31.BI "intmax_t wcstoimax(const wchar_t *" nptr ", wchar_t **" endptr \
32", int " base );
fea681da 33.br
3d54a910
MK
34.BI "uintmax_t wcstoumax(const wchar_t *" nptr ", wchar_t **" endptr \
35", int " base );
fea681da
MK
36.fi
37.SH DESCRIPTION
c13182ef 38These functions are just like
fb186734 39.BR wcstol (3)
fea681da 40and
fb186734 41.BR wcstoul (3),
fea681da 42except that they return a value of type
9ff08aad 43.I intmax_t
fea681da 44and
9ff08aad 45.IR uintmax_t ,
fea681da 46respectively.
47297adb 47.SH CONFORMING TO
68e1685c 48C99.
47297adb 49.SH SEE ALSO
fea681da
MK
50.BR imaxabs (3),
51.BR imaxdiv (3),
52.BR strtoimax (3),
53.BR strtoumax (3),
0e1ad98c 54.\" FIXME . the pages referred to by the following xrefs are not yet written
fea681da
MK
55.BR wcstol (3),
56.BR wcstoul (3)