]> pd.if.org Git - pdclib.old/blob - functions/_PDCLIB/digits.c
Porting current working set from CVS.
[pdclib.old] / functions / _PDCLIB / digits.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* _PDCLIB_digits
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 char _PDCLIB_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
12
13 #ifdef TEST
14
15 int main( void )
16 {
17     /* no tests for raw data */
18     return 0;
19 }
20
21 #endif