3 /* _PDCLIB_strtox_main( const char * *, int, _PDCLIB_uintmax_t, _PDCLIB_uintmax_t, 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.
15 #include <_PDCLIB_int.h>
16 _PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, unsigned int base, uintmax_t error, uintmax_t limval, int limdigit, char * sign )
18 _PDCLIB_uintmax_t rc = 0;
21 while ( ( x = memchr( _PDCLIB_digits, tolower(**p), base ) ) != NULL )
23 digit = x - _PDCLIB_digits;
24 if ( ( rc < limval ) || ( ( rc == limval ) && ( digit <= limdigit ) ) )
26 rc = rc * base + (unsigned)digit;
32 /* TODO: Only if endptr != NULL - but do we really want *another* parameter? */
33 /* TODO: Earlier version was missing tolower() here but was not caught by tests */
34 while ( memchr( _PDCLIB_digits, tolower(**p), base ) != NULL ) ++(*p);
35 /* TODO: This is ugly, but keeps caller from negating the error value */
50 #include <_PDCLIB_test.h>
60 /* basic functionality */
63 TESTCASE( _PDCLIB_strtox_main( &p, 10u, (uintmax_t)999, (uintmax_t)12, 3, &sign ) == 123 );
64 TESTCASE( errno == 0 );
65 TESTCASE( p == &test[3] );
66 /* proper functioning to smaller base */
68 TESTCASE( _PDCLIB_strtox_main( &p, 8u, (uintmax_t)999, (uintmax_t)12, 3, &sign ) == 0123 );
69 TESTCASE( errno == 0 );
70 TESTCASE( p == &test[3] );
71 /* overflowing subject sequence must still return proper endptr */
73 TESTCASE( _PDCLIB_strtox_main( &p, 4u, (uintmax_t)999, (uintmax_t)1, 2, &sign ) == 999 );
74 TESTCASE( errno == ERANGE );
75 TESTCASE( p == &test[3] );
76 TESTCASE( sign == '+' );
77 /* testing conversion failure */
81 TESTCASE( _PDCLIB_strtox_main( &p, 10u, (uintmax_t)999, (uintmax_t)99, 8, &sign ) == 0 );
82 TESTCASE( p == NULL );