]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/strtox_main.c
Extended comment - old one left me clueless.
[pdclib] / functions / _PDCLIB / strtox_main.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* _PDCLIB_strtox_main( const char * *, int, _PDCLIB_uintmax_t, _PDCLIB_uintmax_t, int )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #define _PDCLIB_INT_H _PDCLIB_INT_H
12 #include <_PDCLIB_int.h>
13 #include <ctype.h>
14 #include <errno.h>
15 #include <string.h>
16
17 _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 )
18 {
19     _PDCLIB_uintmax_t rc = 0;
20     int digit = -1;
21     const char * x;
22     while ( ( x = memchr( _PDCLIB_digits, toupper(**p), base ) ) != NULL )
23     {
24         digit = x - _PDCLIB_digits;
25         if ( ( rc < limval ) || ( ( rc == limval ) && ( digit <= limdigit ) ) )
26         {
27             rc = rc * base + ( x - _PDCLIB_digits );
28             ++(*p);
29         }
30         else
31         {
32             errno = ERANGE;
33             /* TODO: Only if endptr != NULL - but do we really want *another* parameter? */
34             while ( memchr( _PDCLIB_digits, **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()
53 {
54     const char * p;
55     char test[] = "123_";
56     char fail[] = "xxx";
57     char sign = '-';
58     BEGIN_TESTS;
59     /* basic functionality */
60     p = test;
61     errno = 0;
62     TESTCASE( _PDCLIB_strtox_main( &p, 10, 999, 12, 3, &sign ) == 123 );
63     TESTCASE( errno == 0 );
64     TESTCASE( p == &test[3] );
65     /* proper functioning to smaller base */
66     p = test;
67     TESTCASE( _PDCLIB_strtox_main( &p, 8, 999, 12, 3, &sign ) == 0123 );
68     TESTCASE( errno == 0 );
69     TESTCASE( p == &test[3] );
70     /* overflowing subject sequence must still return proper endptr */
71     p = test;
72     TESTCASE( _PDCLIB_strtox_main( &p, 4, 999, 1, 2, &sign ) == 999 );
73     TESTCASE( errno == ERANGE );
74     TESTCASE( p == &test[3] );
75     TESTCASE( sign == '+' );
76     /* testing conversion failure */
77     errno = 0;
78     p = fail;
79     sign = '-';
80     TESTCASE( _PDCLIB_strtox_main( &p, 10, 999, 99, 8, &sign ) == 0 );
81     TESTCASE( p == NULL );
82     return TEST_RESULTS;
83 }
84
85 #endif