diff options
author | ache <ache@FreeBSD.org> | 2001-11-28 00:48:11 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-11-28 00:48:11 +0000 |
commit | 950bfdf509d69b5c71a77c19ecb6ea5be2336016 (patch) | |
tree | 39609fa880161cf047c27ac96bdf1f70f43a0e14 /lib/libc/stdlib/strtouq.c | |
parent | c5c274cf2c1c3f51f2c5da3acf04d8098f3e2784 (diff) | |
download | FreeBSD-src-950bfdf509d69b5c71a77c19ecb6ea5be2336016.zip FreeBSD-src-950bfdf509d69b5c71a77c19ecb6ea5be2336016.tar.gz |
Understand national (non-ASCII) digits now
Allow bases >=36 again
Misc cleanup
Diffstat (limited to 'lib/libc/stdlib/strtouq.c')
-rw-r--r-- | lib/libc/stdlib/strtouq.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libc/stdlib/strtouq.c b/lib/libc/stdlib/strtouq.c index 1b59c4a..d5e992a 100644 --- a/lib/libc/stdlib/strtouq.c +++ b/lib/libc/stdlib/strtouq.c @@ -43,9 +43,6 @@ static char sccsid[] = "@(#)strtouq.c 8.1 (Berkeley) 6/4/93"; /* * Convert a string to an unsigned quad integer. - * - * Assumes that the upper and lower case - * alphabets and digits are each contiguous. */ u_quad_t strtouq(nptr, endptr, base) |