]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/strtox_main.c
b19a1e7d15d4f2b3cfba54bc3f07b6bac6353120
[pdclib] / functions / _PDCLIB / strtox_main.c
1 /* $Id$ */
2
3 /* _PDCLIB_strtox_main( const char * *, int, _PDCLIB_uintmax_t, _PDCLIB_uintmax_t, int )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #define _PDCLIB_INT_H _PDCLIB_INT_H
10 #include <_PDCLIB_int.h>
11 #include <ctype.h>
12 #include <errno.h>
13 #include <string.h>
14 #include <stdint.h>
15
16 _PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, unsigned int base, uintmax_t error, uintmax_t limval, int limdigit, char * sign )
17 {
18     _PDCLIB_uintmax_t rc = 0;
19     int digit = -1;
20     const char * x;
21     while ( ( x = memchr( _PDCLIB_digits, tolower(**p), base ) ) != NULL )
22     {
23         digit = x - _PDCLIB_digits;
24         if ( ( rc < limval ) || ( ( rc == limval ) && ( digit <= limdigit ) ) )
25         {
26             rc = rc * base + (unsigned)digit;
27             ++(*p);
28         }
29         else
30         {
31             errno = ERANGE;
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 */
36             *sign = '+';
37             return error;
38         }
39     }
40     if ( digit == -1 )
41     {
42         *p = NULL;
43         return 0;
44     }
45     return rc;
46 }
47
48 #ifdef TEST
49 #include <_PDCLIB_test.h>
50 #include <errno.h>
51
52 int main( void )
53 {
54     const char * p;
55     char test[] = "123_";
56     char fail[] = "xxx";
57     char sign = '-';
58     /* basic functionality */
59     p = test;
60     errno = 0;
61     TESTCASE( _PDCLIB_strtox_main( &p, 10u, (uintmax_t)999, (uintmax_t)12, 3, &sign ) == 123 );
62     TESTCASE( errno == 0 );
63     TESTCASE( p == &test[3] );
64     /* proper functioning to smaller base */
65     p = test;
66     TESTCASE( _PDCLIB_strtox_main( &p, 8u, (uintmax_t)999, (uintmax_t)12, 3, &sign ) == 0123 );
67     TESTCASE( errno == 0 );
68     TESTCASE( p == &test[3] );
69     /* overflowing subject sequence must still return proper endptr */
70     p = test;
71     TESTCASE( _PDCLIB_strtox_main( &p, 4u, (uintmax_t)999, (uintmax_t)1, 2, &sign ) == 999 );
72     TESTCASE( errno == ERANGE );
73     TESTCASE( p == &test[3] );
74     TESTCASE( sign == '+' );
75     /* testing conversion failure */
76     errno = 0;
77     p = fail;
78     sign = '-';
79     TESTCASE( _PDCLIB_strtox_main( &p, 10u, (uintmax_t)999, (uintmax_t)99, 8, &sign ) == 0 );
80     TESTCASE( p == NULL );
81     return TEST_RESULTS;
82 }
83
84 #endif