X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdlib%2Fstrtol.c;h=ce75539e4268c54babf288976daa0316b4506189;hp=ff5aa8b0cb791609f0bbe526248fd54d135b0825;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=a381f50d5325748b70096ac5f5d3f63ae4f6e18a diff --git a/functions/stdlib/strtol.c b/functions/stdlib/strtol.c index ff5aa8b..ce75539 100644 --- a/functions/stdlib/strtol.c +++ b/functions/stdlib/strtol.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strtol( const char *, char * *, int ) This file is part of the Public Domain C Library (PDCLib). @@ -25,7 +23,6 @@ long int strtol( const char * s, char ** endptr, int base ) } else { - /* FIXME: This breaks on some machines that round negatives wrongly */ rc = (long int)_PDCLIB_strtox_main( &p, (unsigned)base, (uintmax_t)LONG_MIN, (uintmax_t)( LONG_MIN / -base ), (int)( -( LONG_MIN % base ) ), &sign ); } if ( endptr != NULL ) *endptr = ( p != NULL ) ? (char *) p : (char *) s; @@ -35,7 +32,7 @@ long int strtol( const char * s, char ** endptr, int base ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" #include @@ -84,11 +81,11 @@ int main( void ) endptr = NULL; TESTCASE( strtol( overflow, &endptr, 0 ) == 0 ); TESTCASE( endptr == overflow ); - /* These tests assume two-complement, but conversion should work for */ - /* one-complement and signed magnitude just as well. Anyone having a */ - /* platform to test this on? */ + /* TODO: These tests assume two-complement, but conversion should work */ + /* for one-complement and signed magnitude just as well. Anyone having */ + /* a platform to test this on? */ errno = 0; -#if LONG_MAX == 0x7fffffffL +#if LONG_MAX >> 30 == 1 /* testing "even" overflow, i.e. base is power of two */ TESTCASE( strtol( "2147483647", NULL, 0 ) == 0x7fffffff ); TESTCASE( errno == 0 ); @@ -105,7 +102,7 @@ int main( void ) TESTCASE( strtol( "-2147483649", NULL, 0 ) == LONG_MIN ); TESTCASE( errno == ERANGE ); /* TODO: test "odd" overflow, i.e. base is not power of two */ -#elif LONG_MAX == 0x7fffffffffffffffL +#elif LONG_MAX >> 62 == 1 /* testing "even" overflow, i.e. base is power of two */ TESTCASE( strtol( "9223372036854775807", NULL, 0 ) == 0x7fffffffffffffff ); TESTCASE( errno == 0 );