X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2Fstrtox_main.c;h=bc14811335c736c73eab4597f9f704559b0aefba;hb=ee68216262558493cc862deb575fb0b97ed49429;hp=59534d83809c3e00ef87116a6afed3e2da77c826;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/functions/_PDCLIB/strtox_main.c b/functions/_PDCLIB/strtox_main.c index 59534d8..bc14811 100644 --- a/functions/_PDCLIB/strtox_main.c +++ b/functions/_PDCLIB/strtox_main.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* _PDCLIB_strtox_main( const char * *, int, _PDCLIB_uintmax_t, _PDCLIB_uintmax_t, int ) This file is part of the Public Domain C Library (PDCLib). @@ -20,19 +18,20 @@ _PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, unsigned int base, uintm _PDCLIB_uintmax_t rc = 0; int digit = -1; const char * x; - while ( ( x = memchr( _PDCLIB_digits, toupper(**p), base ) ) != NULL ) + while ( ( x = memchr( _PDCLIB_digits, tolower(**p), base ) ) != NULL ) { digit = x - _PDCLIB_digits; if ( ( rc < limval ) || ( ( rc == limval ) && ( digit <= limdigit ) ) ) { - rc = rc * base + ( x - _PDCLIB_digits ); + rc = rc * base + digit; ++(*p); } else { errno = ERANGE; /* TODO: Only if endptr != NULL - but do we really want *another* parameter? */ - while ( memchr( _PDCLIB_digits, **p, base ) != NULL ) ++(*p); + /* TODO: Earlier version was missing tolower() here but was not caught by tests */ + while ( memchr( _PDCLIB_digits, tolower(**p), base ) != NULL ) ++(*p); /* TODO: This is ugly, but keeps caller from negating the error value */ *sign = '+'; return error;