-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathtommath_c89.h
46 lines (41 loc) · 1.23 KB
/
tommath_c89.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
/*
* This header defines custom types which
* are used in c89 mode.
*
* By default, the source uses stdbool.h
* and stdint.h. The command `make c89`
* can be used to convert the source,
* such that this header is used instead.
* Use `make c99` to convert back.
*
* Please adapt the following definitions to your needs!
*/
/* stdbool.h replacement types */
typedef enum { MP_NO, MP_YES } mp_bool;
/* stdint.h replacement types */
typedef __INT8_TYPE__ mp_i8;
typedef __INT16_TYPE__ mp_i16;
typedef __INT32_TYPE__ mp_i32;
typedef __INT64_TYPE__ mp_i64;
typedef __UINT8_TYPE__ mp_u8;
typedef __UINT16_TYPE__ mp_u16;
typedef __UINT32_TYPE__ mp_u32;
typedef __UINT64_TYPE__ mp_u64;
# if __WORDSIZE == 64
typedef __UINT64_TYPE__ mp_uintptr;
# else
typedef __UINT32_TYPE__ mp_uintptr;
# endif
/* inttypes.h replacement, printf format specifier */
# if __WORDSIZE == 64
# define MP_PRI64_PREFIX "l"
# else
# define MP_PRI64_PREFIX "ll"
# endif
#define MP_PRIi64 MP_PRI64_PREFIX "i"
#define MP_PRIu64 MP_PRI64_PREFIX "u"
#define MP_PRIx64 MP_PRI64_PREFIX "x"
#define MP_PRIo64 MP_PRI64_PREFIX "o"
#define MP_FUNCTION_NAME __func__