Uppercase hex digits for printf() functions.
authorsolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Mon, 24 Apr 2006 06:09:24 +0000 (06:09 +0000)
committersolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Mon, 24 Apr 2006 06:09:24 +0000 (06:09 +0000)
git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@183 546481bc-9713-0410-bf18-d3337bbf4a3e

functions/_PDCLIB/Xdigits.c [new file with mode: 0644]

diff --git a/functions/_PDCLIB/Xdigits.c b/functions/_PDCLIB/Xdigits.c
new file mode 100644 (file)
index 0000000..cca4607
--- /dev/null
@@ -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