]> pd.if.org Git - pdclib.old/blob - functions/_PDCLIB/Xdigits.c
Intermediate work while migrating CVS -> SVN.
[pdclib.old] / functions / _PDCLIB / Xdigits.c
1 /* $Id$ */
2
3 /* _PDCLIB_Xdigits
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 char _PDCLIB_Xdigits[] = "0123456789ABCDEF";
10
11 #ifdef TEST
12
13 int main( void )
14 {
15     /* no tests for raw data */
16     return 0;
17 }
18
19 #endif