5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
10 #include <_PDCLIB_int.h>
13 char _PDCLIB_digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";
15 /* For _PDCLIB/print.c only; obsolete with ctype.h */
16 char _PDCLIB_Xdigits[] = "0123456789ABCDEF";
19 #include <_PDCLIB_test.h>
26 TESTCASE( strcmp( _PDCLIB_digits, "0123456789abcdefghijklmnopqrstuvwxyz" ) == 0 );
27 TESTCASE( strcmp( _PDCLIB_Xdigits, "0123456789ABCDEF" ) == 0 );