3 /* strtoll( const char *, char * *, int )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
16 long long int strtoll( const char * s, char ** endptr, int base )
20 const char * p = _PDCLIB_strtox_prelim( s, &sign, &base );
21 if ( base < 2 || base > 36 ) return 0;
24 rc = (long long int)_PDCLIB_strtox_main( &p, (unsigned)base, (uintmax_t)LLONG_MAX, (uintmax_t)( LLONG_MAX / base ), (int)( LLONG_MAX % base ), &sign );
28 rc = (long long int)_PDCLIB_strtox_main( &p, (unsigned)base, (uintmax_t)LLONG_MIN, (uintmax_t)( LLONG_MIN / -base ), (int)( -( LLONG_MIN % base ) ), &sign );
30 if ( endptr != NULL ) *endptr = ( p != NULL ) ? (char *) p : (char *) s;
31 return ( sign == '+' ) ? rc : -rc;
37 #include <_PDCLIB_test.h>
44 /* this, to base 36, overflows even a 256 bit integer */
45 char overflow[] = "-ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ_";
46 /* tricky border case */
47 char tricky[] = "+0xz";
49 /* basic functionality */
50 TESTCASE( strtoll( "123", NULL, 10 ) == 123 );
51 /* proper detecting of default base 10 */
52 TESTCASE( strtoll( "456", NULL, 0 ) == 456 );
53 /* proper functioning to smaller base */
54 TESTCASE( strtoll( "14", NULL, 8 ) == 12 );
55 /* proper autodetecting of octal */
56 TESTCASE( strtoll( "016", NULL, 0 ) == 14 );
57 /* proper autodetecting of hexadecimal, lowercase 'x' */
58 TESTCASE( strtoll( "0xFF", NULL, 0 ) == 255 );
59 /* proper autodetecting of hexadecimal, uppercase 'X' */
60 TESTCASE( strtoll( "0Xa1", NULL, 0 ) == 161 );
61 /* proper handling of border case: 0x followed by non-hexdigit */
62 TESTCASE( strtoll( tricky, &endptr, 0 ) == 0 );
63 TESTCASE( endptr == tricky + 2 );
64 /* proper handling of border case: 0 followed by non-octdigit */
65 TESTCASE( strtoll( tricky, &endptr, 8 ) == 0 );
66 TESTCASE( endptr == tricky + 2 );
67 /* errno should still be 0 */
68 TESTCASE( errno == 0 );
69 /* overflowing subject sequence must still return proper endptr */
70 TESTCASE( strtoll( overflow, &endptr, 36 ) == LLONG_MIN );
71 TESTCASE( errno == ERANGE );
72 TESTCASE( ( endptr - overflow ) == 53 );
73 /* same for positive */
75 TESTCASE( strtoll( overflow + 1, &endptr, 36 ) == LLONG_MAX );
76 TESTCASE( errno == ERANGE );
77 TESTCASE( ( endptr - overflow ) == 53 );
78 /* testing skipping of leading whitespace */
79 TESTCASE( strtoll( " \n\v\t\f789", NULL, 0 ) == 789 );
80 /* testing conversion failure */
81 TESTCASE( strtoll( overflow, &endptr, 10 ) == 0 );
82 TESTCASE( endptr == overflow );
84 TESTCASE( strtoll( overflow, &endptr, 0 ) == 0 );
85 TESTCASE( endptr == overflow );
86 /* TODO: These tests assume two-complement, but conversion should work */
87 /* for one-complement and signed magnitude just as well. Anyone having */
88 /* a platform to test this on? */
90 #if LLONG_MAX >> 62 == 1
91 /* testing "even" overflow, i.e. base is power of two */
92 TESTCASE( strtoll( "9223372036854775807", NULL, 0 ) == 0x7fffffffffffffff );
93 TESTCASE( errno == 0 );
94 TESTCASE( strtoll( "9223372036854775808", NULL, 0 ) == LLONG_MAX );
95 TESTCASE( errno == ERANGE );
97 TESTCASE( strtoll( "-9223372036854775807", NULL, 0 ) == (long long)0x8000000000000001 );
98 TESTCASE( errno == 0 );
99 TESTCASE( strtoll( "-9223372036854775808", NULL, 0 ) == LLONG_MIN );
100 TESTCASE( errno == 0 );
101 TESTCASE( strtoll( "-9223372036854775809", NULL, 0 ) == LLONG_MIN );
102 TESTCASE( errno == ERANGE );
103 /* TODO: test "odd" overflow, i.e. base is not power of two */
104 #elif LLONG_MAX >> 126 == 1
105 /* testing "even" overflow, i.e. base is power of two */
106 TESTCASE( strtoll( "170141183460469231731687303715884105728", NULL, 0 ) == 0x7fffffffffffffffffffffffffffffff );
107 TESTCASE( errno == 0 );
108 TESTCASE( strtoll( "170141183460469231731687303715884105729", NULL, 0 ) == LLONG_MAX );
109 TESTCASE( errno == ERANGE );
111 TESTCASE( strtoll( "-170141183460469231731687303715884105728", NULL, 0 ) == -0x80000000000000000000000000000001 );
112 TESTCASE( errno == 0 );
113 TESTCASE( strtoll( "-170141183460469231731687303715884105729", NULL, 0 ) == LLONG_MIN );
114 TESTCASE( errno == 0 );
115 TESTCASE( strtoll( "-170141183460469231731687303715884105730", NULL, 0 ) == LLONG_MIN );
116 TESTCASE( errno == ERANGE );
117 /* TODO: test "odd" overflow, i.e. base is not power of two */
119 #error Unsupported width of 'long long' (neither 64 nor 128 bit).