]> pd.if.org Git - pdclib/blob - functions/ctype/isxdigit.c
Moved ctype info into struct lconv.
[pdclib] / functions / ctype / isxdigit.c
1 /* $Id$ */
2
3 /* isxdigit( 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 #include <ctype.h>
10
11 #ifndef REGTEST
12
13 #include <locale.h>
14
15 int isxdigit( int c )
16 {
17     return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_XDIGT );
18 }
19
20 #endif
21
22 #ifdef TEST
23 #include <_PDCLIB_test.h>
24
25 int main( void )
26 {
27     TESTCASE( isxdigit( '0' ) );
28     TESTCASE( isxdigit( '9' ) );
29     TESTCASE( isxdigit( 'a' ) );
30     TESTCASE( isxdigit( 'f' ) );
31     TESTCASE( ! isxdigit( 'g' ) );
32     TESTCASE( isxdigit( 'A' ) );
33     TESTCASE( isxdigit( 'F' ) );
34     TESTCASE( ! isxdigit( 'G' ) );
35     TESTCASE( ! isxdigit( '@' ) );
36     TESTCASE( ! isxdigit( ' ' ) );
37     return TEST_RESULTS;
38 }
39
40 #endif