]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/atomax.c
9a7021813bf1122f73794a8a36e75cade05850c1
[pdclib] / functions / _PDCLIB / atomax.c
1 /* $Id$ */
2
3 /* _PDCLIB_atomax( const char * )
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 <string.h>
12 #include <ctype.h>
13
14 _PDCLIB_intmax_t _PDCLIB_atomax( const char * s )
15 {
16     _PDCLIB_intmax_t rc = 0;
17     char sign = '+';
18     const char * x;
19     /* TODO: In other than "C" locale, additional patterns may be defined     */
20     while ( isspace( *s ) ) ++s;
21     if ( *s == '+' ) ++s;
22     else if ( *s == '-' ) sign = *(s++);
23     /* TODO: Earlier version was missing tolower() but was not caught by tests */
24     while ( ( x = memchr( _PDCLIB_digits, tolower(*(s++)), 10 ) ) != NULL )
25     {
26         rc = rc * 10 + ( x - _PDCLIB_digits );
27     }
28     return ( sign == '+' ) ? rc : -rc;
29 }
30
31 #ifdef TEST
32 #include <_PDCLIB_test.h>
33
34 int main( void )
35 {
36     /* basic functionality */
37     TESTCASE( _PDCLIB_atomax( "123" ) == 123 );
38     /* testing skipping of leading whitespace and trailing garbage */
39     TESTCASE( _PDCLIB_atomax( " \n\v\t\f123xyz" ) == 123 );
40     return TEST_RESULTS;
41 }
42
43 #endif