From: solar Date: Sat, 3 Dec 2005 21:39:59 +0000 (+0000) Subject: Ugly workaround to keep wrappers from negating error value. X-Git-Tag: v0.4~52 X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=0292f971663afe513ec4e8881aa2ec9d57b8f152 Ugly workaround to keep wrappers from negating error value. --- diff --git a/functions/_PDCLIB/strtox_main.c b/functions/_PDCLIB/strtox_main.c index 6ab56cd..e6e3d11 100644 --- a/functions/_PDCLIB/strtox_main.c +++ b/functions/_PDCLIB/strtox_main.c @@ -13,7 +13,7 @@ #include #include -_PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, int base, _PDCLIB_uintmax_t error, _PDCLIB_uintmax_t limval, int limdigit ) +_PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, int base, _PDCLIB_uintmax_t error, _PDCLIB_uintmax_t limval, _PDCLIB_uintmax_t limdigit, char * sign ) { _PDCLIB_uintmax_t rc = 0; int digit = -1; @@ -31,6 +31,8 @@ _PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, int base, _PDCLIB_uintma errno = ERANGE; /* TODO: Only if endptr != NULL */ while ( memchr( _PDCLIB_digits, **p, base ) != NULL ) ++(*p); + /* TODO: This is ugly, but keeps caller from negating the error value */ + *sign = '+'; return error; } } @@ -51,27 +53,30 @@ int main() const char * p; char test[] = "123_"; char fail[] = "xxx"; + char sign = '-'; BEGIN_TESTS; /* basic functionality */ p = test; errno = 0; - TESTCASE( _PDCLIB_strtox_main( &p, 10, 999, 12, 3 ) == 123 ); + TESTCASE( _PDCLIB_strtox_main( &p, 10, 999, 12, 3, &sign ) == 123 ); TESTCASE( errno == 0 ); TESTCASE( p == &test[3] ); /* proper functioning to smaller base */ p = test; - TESTCASE( _PDCLIB_strtox_main( &p, 8, 999, 12, 3 ) == 0123 ); + TESTCASE( _PDCLIB_strtox_main( &p, 8, 999, 12, 3, &sign ) == 0123 ); TESTCASE( errno == 0 ); TESTCASE( p == &test[3] ); /* overflowing subject sequence must still return proper endptr */ p = test; - TESTCASE( _PDCLIB_strtox_main( &p, 4, 999, 1, 2 ) == 999 ); + TESTCASE( _PDCLIB_strtox_main( &p, 4, 999, 1, 2, &sign ) == 999 ); TESTCASE( errno == ERANGE ); TESTCASE( p == &test[3] ); + TESTCASE( sign == '+' ); /* testing conversion failure */ errno = 0; p = fail; - TESTCASE( _PDCLIB_strtox_main( &p, 10, 999, 99, 8 ) == 0 ); + sign = '-'; + TESTCASE( _PDCLIB_strtox_main( &p, 10, 999, 99, 8, &sign ) == 0 ); TESTCASE( p == NULL ); return TEST_RESULTS; } diff --git a/internals/_PDCLIB_int.h b/internals/_PDCLIB_int.h index 317173e..8f2cf74 100644 --- a/internals/_PDCLIB_int.h +++ b/internals/_PDCLIB_int.h @@ -261,7 +261,7 @@ _PDCLIB_intmax_t _PDCLIB_atomax( const char * s ); /* Two helper functions used by strtol(), strtoul() and long long variants. */ const char * _PDCLIB_strtox_prelim( const char * p, char * sign, int * base ); -_PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, int base, _PDCLIB_uintmax_t error, _PDCLIB_uintmax_t limval, int limdigit ); +_PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, int base, _PDCLIB_uintmax_t error, _PDCLIB_uintmax_t limval, _PDCLIB_uintmax_t limdigit, char * sign ); /* Digits array used by various integer conversion functions in */ extern char _PDCLIB_digits[];