1 .\" Copyright (c) 2004 Ted Unangst
3 .\" Permission to use, copy, modify, and distribute this software for any
4 .\" purpose with or without fee is hereby granted, provided that the above
5 .\" copyright notice and this permission notice appear in all copies.
7 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 .\" $OpenBSD: strtonum.3,v 1.13 2006/04/25 05:15:42 tedu Exp $
23 .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
53 followed by a single optional
59 The remainder of the string is converted to a
61 value according to base 10.
63 The value obtained is then checked against the provided
72 stores an error string in
74 indicating the failure.
78 function returns the result of the conversion,
79 unless the value would exceed the provided bounds or is invalid.
80 On error, 0 is returned,
84 will point to an error message.
89 this fact can be used to differentiate
90 a successful return of 0 from an error.
94 correctly is meant to be simpler than the alternative functions.
95 .Bd -literal -offset indent
99 iterations = strtonum(optarg, 1, 64, &errstr);
101 errx(1, "number of iterations is %s: %s", errstr, optarg);
104 The above example will guarantee that the value of iterations is between
105 1 and 64 (inclusive).
109 The given string was out of range.
111 The given string did not consist solely of digit characters.
121 will be set to one of the following strings:
123 .Bl -tag -width ".Li too large" -compact
125 The result was larger than the provided maximum value.
127 The result was smaller than the provided minimum value.
129 The string did not consist solely of digit characters.
146 The existing alternatives, such as
150 are either impossible or difficult to use safely.
154 function first appeared in