 |
YAP 7.1.0
|
8#define Int_FORMAT "%I64d"
9#define UInt_FORMAT "%I64u"
12#define UXInt_F "I64xu"
19#define Int_FORMAT "%I32d"
20#define UInt_FORMAT "%I32u"
23#define UInt_FORMAT "%I32u"
24#define UXInt_FORMAT "%I32xu"
28#define Int_FORMAT "%" PRIdPTR
29#define Int_ANYFORMAT "%" PRIuPTR
30#define UInt_FORMAT "%" PRIuPTR
32#define Int_ANYF PRIuPTR
34#define UXInt_F PRIxPTR
37#elif SIZEOF_LONG_INT == SIZEOF_INT_P
40typedef unsigned long int UInt;
41#define Int_FORMAT "%ld"
42#define UInt_FORMAT "%uld"
48#elif SIZEOF_INT == SIZEOF_INT_P
51typedef unsigned int UInt;
52#define Int_FORMAT "%l"
53#define UInt_FORMAT "%ul"