2 .\" Copyright (c) 2004 Ted Unangst
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.
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.
16 .Dd $Mdocdate: February 7 2016 $
21 .Nd reliably convert string value to an integer
28 .Fa "const char *nptr"
29 .Fa "long long minval"
30 .Fa "long long maxval"
31 .Fa "const char **errstr"
36 function converts the string in
43 function was designed to facilitate safe, robust programming
44 and overcome the shortcomings of the
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
58 The remainder of the string is converted to a
60 value according to base 10.
62 The value obtained is then checked against the provided
71 stores an error string in
73 indicating the failure.
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,
83 will point to an error message.
87 on success; this fact can be used to differentiate a successful return of 0 from
92 correctly is meant to be simpler than the alternative functions.
93 .Bd -literal -offset indent
97 iterations = strtonum(optarg, 1, 64, &errstr);
99 errx(1, "number of iterations is %s: %s", errstr, optarg);
102 The above example will guarantee that the value of iterations is between
108 The given string was out of range.
110 The given string did not consist solely of digit characters.
119 will be set to one of the following strings:
121 .Bl -tag -width "too largeXX" -compact
123 The result was larger than the provided maximum value.
125 The result was smaller than the provided minimum value.
127 The string did not consist solely of digit characters.
129 .Sh INTERFACE STABILITY
147 The existing alternatives, such as
151 are either impossible or difficult to use safely.