]> pd.if.org Git - pdclib.old/blob - functions/_PDCLIB/digits.c
Temporary proof-of-concept for printf() output conversions.
[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