]> pd.if.org Git - pdclib.old/blob - functions/_PDCLIB/digits.c
3963f8b28b52729254ba4648058262075f65b728
[pdclib.old] / functions / _PDCLIB / digits.c
1 /* $Id$ */
2
3 /* _PDCLIB_digits
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_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
10
11 #ifdef TEST
12
13 int main( void )
14 {
15     /* no tests for raw data */
16     return 0;
17 }
18
19 #endif