OSDN Git Service

(split) LDP man-pages の original/ を v3.29 に更新。
[linuxjm/LDP_man-pages.git] / original / man3 / atoi.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\" Modified Mon Mar 29 22:39:41 1993, David Metcalfe
28 .\" Modified Sat Jul 24 21:38:42 1993, Rik Faith (faith@cs.unc.edu)
29 .\" Modified Sun Dec 17 18:35:06 2000, Joseph S. Myers
30 .\"
31 .TH ATOI 3  2010-09-20 "GNU" "Linux Programmer's Manual"
32 .SH NAME
33 atoi, atol, atoll, atoq \- convert a string to an integer
34 .SH SYNOPSIS
35 .nf
36 .B #include <stdlib.h>
37 .sp
38 .BI "int atoi(const char *" nptr );
39 .br
40 .BI "long atol(const char *" nptr );
41 .br
42 .BI "long long atoll(const char *" nptr );
43 .br
44 .BI "long long atoq(const char *" nptr );
45 .fi
46 .sp
47 .in -4n
48 Feature Test Macro Requirements for glibc (see
49 .BR feature_test_macros (7)):
50 .in
51 .sp
52 .ad l
53 .BR atoll ():
54 .RS 4
55 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE ||
56 _POSIX_C_SOURCE\ >=\ 200112L;
57 .br
58 or
59 .I cc\ -std=c99
60 .RE
61 .ad
62 .SH DESCRIPTION
63 The
64 .BR atoi ()
65 function converts the initial portion of the string
66 pointed to by \fInptr\fP to
67 .IR int .
68 The behavior is the same as
69 .sp
70 .in +4n
71 strtol(nptr, (char **) NULL, 10);
72 .in
73 .sp
74 except that
75 .BR atoi ()
76 does not detect errors.
77 .PP
78 The
79 .BR atol ()
80 and
81 .BR atoll ()
82 functions behave the same as
83 .BR atoi (),
84 except that they convert the initial portion of the
85 string to their return type of \fIlong\fP or \fIlong long\fP.
86 .BR atoq ()
87 is an obsolete name for
88 .BR atoll ().
89 .SH "RETURN VALUE"
90 The converted value.
91 .SH "CONFORMING TO"
92 SVr4, POSIX.1-2001, 4.3BSD, C99.
93 C89 and
94 POSIX.1-1996 include the functions
95 .BR atoi ()
96 and
97 .BR atol ()
98 only.
99 .BR atoq ()
100 is a GNU extension.
101 .SH NOTES
102 The nonstandard
103 .BR atoq ()
104 function is not present in libc 4.6.27
105 or glibc 2, but is present in libc5 and libc 4.7 (though only as an
106 inline function in \fI<stdlib.h>\fP until libc 5.4.44).
107 The
108 .BR atoll ()
109 function is present in glibc 2 since version 2.0.2, but
110 not in libc4 or libc5.
111 .SH "SEE ALSO"
112 .BR atof (3),
113 .BR strtod (3),
114 .BR strtol (3),
115 .BR strtoul (3)