From: solar Date: Mon, 24 Apr 2006 06:09:24 +0000 (+0000) Subject: Uppercase hex digits for printf() functions. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=e0d429aa37bb851b375b9b62d9e1bc4711d9878f;p=fw%2Fpdclib Uppercase hex digits for printf() functions. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@183 546481bc-9713-0410-bf18-d3337bbf4a3e --- diff --git a/functions/_PDCLIB/Xdigits.c b/functions/_PDCLIB/Xdigits.c new file mode 100644 index 0000000..cca4607 --- /dev/null +++ b/functions/_PDCLIB/Xdigits.c @@ -0,0 +1,19 @@ +/* $Id$ */ + +/* _PDCLIB_Xdigits + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +char _PDCLIB_Xdigits[] = "0123456789ABCDEF"; + +#ifdef TEST + +int main( void ) +{ + /* no tests for raw data */ + return 0; +} + +#endif