Deleted Added
full compact
37c37
< .\" $FreeBSD: head/lib/libc/stdlib/strtol.3 73088 2001-02-26 13:23:47Z ru $
---
> .\" $FreeBSD: head/lib/libc/stdlib/strtol.3 73152 2001-02-27 13:33:07Z obrien $
43,44c43,44
< .Nm strtol , strtoq
< .Nd convert string value to a long or quad_t integer
---
> .Nm strtol , strtoll , strtoq
> .Nd convert string value to a long , long long , or quad_t integer
51a52,53
> .Ft long long
> .Fn strtoll "const char *nptr" "char **endptr" "int base"
66a69,76
> .Fn strtoll
> function
> converts the string in
> .Fa nptr
> to a
> .Em long long
> value.
> The
148c158,171
< In both cases,
---
> The
> .Fn strtoll
> function
> returns the result of the conversion,
> unless the value would underflow or overflow.
> If an underflow occurs,
> .Fn strtoll
> returns
> .Dv LLONG_MIN .
> If an overflow occurs,
> .Fn strtoll
> returns
> .Dv LLONG_MAX .
> In all cases,
168a192,199
> The
> .Fn strtoll
> function
> conforms to
> .St -isoC-99 .
> The BSD
> .Fn strtoq
> function is deprecated.