8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3c / strtonum.3c
bloba0e6412d6684796766dabb50fb40fa606ddf1c3c
1 .\"
2 .\" Copyright (c) 2004 Ted Unangst
3 .\"
4 .\" Permission to use, copy, modify, and distribute this software for any
5 .\" purpose with or without fee is hereby granted, provided that the above
6 .\" copyright notice and this permission notice appear in all copies.
7 .\"
8 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 .\"
16 .Dd $Mdocdate: February 7 2016 $
17 .Dt STRTONUM 3C
18 .Os
19 .Sh NAME
20 .Nm strtonum
21 .Nd reliably convert string value to an integer
22 .Sh LIBRARY
23 .Lb libc
24 .Sh SYNOPSIS
25 .In stdlib.h
26 .Ft long long
27 .Fo strtonum
28 .Fa "const char *nptr"
29 .Fa "long long minval"
30 .Fa "long long maxval"
31 .Fa "const char **errstr"
32 .Fc
33 .Sh DESCRIPTION
34 The
35 .Fn strtonum
36 function converts the string in
37 .Fa nptr
38 to a
39 .Li long long
40 value.
41 The
42 .Fn strtonum
43 function was designed to facilitate safe, robust programming
44 and overcome the shortcomings of the
45 .Xr atoi 3C
46 and
47 .Xr strtol 3C
48 family of interfaces.
49 .Pp
50 The string may begin with an arbitrary amount of whitespace
51 .Pq as determined by Xr isspace 3C
52 followed by a single optional
53 .Ql +
55 .Ql -
56 sign.
57 .Pp
58 The remainder of the string is converted to a
59 .Li long long
60 value according to base 10.
61 .Pp
62 The value obtained is then checked against the provided
63 .Fa minval
64 and
65 .Fa maxval
66 bounds.
68 .Fa errstr
69 is non-null,
70 .Fn strtonum
71 stores an error string in
72 .Fa errstr
73 indicating the failure.
74 .Sh RETURN VALUES
75 The
76 .Fn strtonum
77 function returns the result of the conversion,
78 unless the value would exceed the provided bounds or is invalid.
79 On error, 0 is returned,
80 .Va errno
81 is set, and
82 .Fa errstr
83 will point to an error message.
84 .Fa errstr
85 will be set to
86 .Dv NULL
87 on success; this fact can be used to differentiate a successful return of 0 from
88 an error.
89 .Sh EXAMPLES
90 Using
91 .Fn strtonum
92 correctly is meant to be simpler than the alternative functions.
93 .Bd -literal -offset indent
94 int iterations;
95 const char *errstr;
97 iterations = strtonum(optarg, 1, 64, &errstr);
98 if (errstr != NULL)
99         errx(1, "number of iterations is %s: %s", errstr, optarg);
102 The above example will guarantee that the value of iterations is between
103 1 and 64
104 .Pq inclusive .
105 .Sh ERRORS
106 .Bl -tag -width Er
107 .It Er ERANGE
108 The given string was out of range.
109 .It Er EINVAL
110 The given string did not consist solely of digit characters.
111 .It Er EINVAL
112 .Ar minval
113 was larger than
114 .Ar maxval .
117 If an error occurs,
118 .Fa errstr
119 will be set to one of the following strings:
121 .Bl -tag -width "too largeXX" -compact
122 .It Qq too large
123 The result was larger than the provided maximum value.
124 .It Qq too small
125 The result was smaller than the provided minimum value.
126 .It Qq invalid
127 The string did not consist solely of digit characters.
129 .Sh INTERFACE STABILITY
130 .Sy Committed .
131 .Sh MT-LEVEL
132 .Sy Safe .
133 .Sh SEE ALSO
134 .Xr atof 3C ,
135 .Xr atoi 3C ,
136 .Xr atol 3C ,
137 .Xr atoll 3C ,
138 .Xr sscanf 3C ,
139 .Xr strtod 3C ,
140 .Xr strtol 3C ,
141 .Xr strtoul 3C
142 .Sh STANDARDS
143 .Fn strtonum
144 is an
146 extension.
147 The existing alternatives, such as
148 .Xr atoi 3C
150 .Xr strtol 3C ,
151 are either impossible or difficult to use safely.