]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/digits.c
Added atoi, atol, atoll plus internal helpers.
[pdclib] / functions / _PDCLIB / digits.c
diff --git a/functions/_PDCLIB/digits.c b/functions/_PDCLIB/digits.c
new file mode 100644 (file)
index 0000000..b58886b
--- /dev/null
@@ -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