]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/digits.c
Added atoi, atol, atoll plus internal helpers.
[pdclib] / functions / _PDCLIB / digits.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* _PDCLIB_digits
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 char _PDCLIB_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
12
13 #ifdef TEST
14 #include <_PDCLIB_test.h>
15
16 int main()
17 {
18     BEGIN_TESTS;
19     /* no tests for raw data */
20     return TEST_RESULTS;
21 }
22
23 #endif