8 #define INT64_T long long
11 #define INT8_FORMAT "%hhd"
12 #define INT16_FORMAT "%hd"
13 #define INT32_FORMAT "%d"
14 #define INT64_FORMAT "%lld"
15 #define PTR_FORMAT "%x"
17 #define UINT8_T unsigned char
18 #define UINT16_T unsigned short
19 #define UINT32_T unsigned int
20 #define UINT64_T unsigned long long
21 #define UPTRINT_T unsigned int
23 #define UINT8_FORMAT "%hhu"
24 #define UINT16_FORMAT "%hu"
25 #define UINT32_FORMAT "%u"
26 #define UINT64_FORMAT "%llu"
27 #define UPTR_FORMAT "%x"