| 1 /* |
1 /* |
| 2 * libtu/numparser2.h |
2 * libtu/numparser2.h |
| 3 * |
3 * |
| 4 * Copyright (c) Tuomo Valkonen 1999-2002. |
4 * Copyright (c) Tuomo Valkonen 1999-2002. |
| 5 * See the included file LICENSE for details. |
5 * |
| |
6 * You may distribute and modify this library under the terms of either |
| |
7 * the Clarified Artistic License or the GNU LGPL, version 2.1 or later. |
| 6 */ |
8 */ |
| 7 |
9 |
| 8 #define MAX_MANTISSA 10 /* should be enough for our needs */ |
10 #define MAX_MANTISSA 10 /* should be enough for our needs */ |
| 9 #define ULONG_SIZE (sizeof(ulong)*8) |
11 #define ULONG_SIZE (sizeof(ulong)*8) |
| 10 |
12 |