Browse Source

clarifications from ray lai;

tweaked by tedu@ and myself;
OPENBSD_3_9
jmc 18 years ago
parent
commit
5508a474a4
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      src/lib/libc/stdlib/strtonum.3

+ 5
- 3
src/lib/libc/stdlib/strtonum.3 View File

@ -1,4 +1,4 @@
.\" $OpenBSD: strtonum.3,v 1.11 2005/04/14 07:58:46 jmc Exp $
.\" $OpenBSD: strtonum.3,v 1.12 2005/10/26 11:37:58 jmc Exp $
.\" .\"
.\" Copyright (c) 2004 Ted Unangst .\" Copyright (c) 2004 Ted Unangst
.\" .\"
@ -77,7 +77,9 @@ The
.Fn strtonum .Fn strtonum
function returns the result of the conversion, function returns the result of the conversion,
unless the value would exceed the provided bounds or is invalid. unless the value would exceed the provided bounds or is invalid.
On error, 0 is returned and
On error, 0 is returned,
.Va errno
is set, and
.Fa errstr .Fa errstr
will point to an error message. will point to an error message.
.Fa *errstr .Fa *errstr
@ -100,7 +102,7 @@ if (errstr)
.Ed .Ed
.Pp .Pp
The above example will guarantee that the value of iterations is between The above example will guarantee that the value of iterations is between
1 and 64.
1 and 64 (inclusive).
.Sh ERRORS .Sh ERRORS
.Bl -tag -width Er .Bl -tag -width Er
.It Bq Er ERANGE .It Bq Er ERANGE


Loading…
Cancel
Save