]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/digits.c
751ac0852edbf71ee64a3abeebdcafa18d979940
[pdclib] / 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 #ifndef _PDCLIB_INT_H
10 #define _PDCLIB_INT_H _PDCLIB_INT_H
11 #include <_PDCLIB_int.h>
12 #endif
13
14 char _PDCLIB_digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";
15
16 #ifdef TEST
17 #include <_PDCLIB_test.h>
18
19 #include <string.h>
20
21 int main( void )
22 {
23     TESTCASE( strcmp( _PDCLIB_digits, "0123456789abcdefghijklmnopqrstuvwxyz" ) == 0 );
24     return TEST_RESULTS;
25 }
26
27 #endif