X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2Fdigits.c;fp=functions%2F_PDCLIB%2Fdigits.c;h=b58886b052a248f9c782eaca5dc38e92f188e780;hb=bb7adccc31cb145b671afe75c432da3fc494ad48;hp=0000000000000000000000000000000000000000;hpb=6d45909b9d6109c54bd0b79e508662fdd17b26d6;p=pdclib diff --git a/functions/_PDCLIB/digits.c b/functions/_PDCLIB/digits.c new file mode 100644 index 0000000..b58886b --- /dev/null +++ b/functions/_PDCLIB/digits.c @@ -0,0 +1,23 @@ +/* $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"; + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main() +{ + BEGIN_TESTS; + /* no tests for raw data */ + return TEST_RESULTS; +} + +#endif