8 #ifndef SCAMAC_INTTYPES_H 9 #define SCAMAC_INTTYPES_H 11 #include "scamac_config.h" 31 #define SCAMACHUGEINT (1 << 20) 39 #ifdef SCAMAC_INDEX_TYPE_int64 40 typedef int64_t ScamacIdx;
41 typedef int32_t ScamacInt;
43 static const ScamacIdx SCAMAC_IDX_MAX = INT64_MAX;
44 static const ScamacInt SCAMAC_INT_MAX = INT32_MAX;
46 #define SCAMACPRIDX PRId64 47 #define SCAMACPRINT PRId32 48 #elif defined SCAMAC_INDEX_TYPE_int32 49 typedef int32_t ScamacIdx;
50 typedef int32_t ScamacInt;
52 static const ScamacIdx SCAMAC_IDX_MAX = INT32_MAX;
53 static const ScamacInt SCAMAC_INT_MAX = INT32_MAX;
55 #define SCAMACPRIDX PRId32 56 #define SCAMACPRINT PRIdFAST32 58 typedef int ScamacIdx;
59 #error "Unknown SCAMAC_INDEX_TYPE"