X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2Fdigits.c;h=6f360646f65514c66a2c8859724edf3f3b676c47;hb=8a90d08be56f4dbef4011a215eeaa8d6dde3749a;hp=b58886b052a248f9c782eaca5dc38e92f188e780;hpb=bb7adccc31cb145b671afe75c432da3fc494ad48;p=pdclib diff --git a/functions/_PDCLIB/digits.c b/functions/_PDCLIB/digits.c index b58886b..6f36064 100644 --- a/functions/_PDCLIB/digits.c +++ b/functions/_PDCLIB/digits.c @@ -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