]> pd.if.org Git - pdclib.old/blobdiff - functions/_PDCLIB/digits.c
Temporary proof-of-concept for printf() output conversions.
[pdclib.old] / functions / _PDCLIB / digits.c
index b58886b052a248f9c782eaca5dc38e92f188e780..6f360646f65514c66a2c8859724edf3f3b676c47 100644 (file)
@@ -1,23 +1,19 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* _PDCLIB_digits
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
-char _PDCLIB_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
+char _PDCLIB_digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     /* no tests for raw data */
-    return TEST_RESULTS;
+    return 0;
 }
 
 #endif