Go to the documentation of this file. 23 #ifndef __CLANG_INTTYPES_H 24 #define __CLANG_INTTYPES_H 26 #if defined(_MSC_VER) && _MSC_VER < 1800 27 #error MSVC does not have inttypes.h prior to Visual Studio 2013 30 #include_next <inttypes.h> 32 #if defined(_MSC_VER) && _MSC_VER < 1900 71 #define PRIdLEAST32 "d" 72 #define PRIdFAST32 "d" 74 #define PRIiLEAST32 "i" 75 #define PRIiFAST32 "i" 77 #define PRIoLEAST32 "o" 78 #define PRIoFAST32 "o" 80 #define PRIuLEAST32 "u" 81 #define PRIuFAST32 "u" 83 #define PRIxLEAST32 "x" 84 #define PRIxFAST32 "x" 86 #define PRIXLEAST32 "X" 87 #define PRIXFAST32 "X" 90 #define SCNdLEAST32 "d" 91 #define SCNdFAST32 "d" 93 #define SCNiLEAST32 "i" 94 #define SCNiFAST32 "i" 96 #define SCNoLEAST32 "o" 97 #define SCNoFAST32 "o" 99 #define SCNuLEAST32 "u" 100 #define SCNuFAST32 "u" 102 #define SCNxLEAST32 "x" 103 #define SCNxFAST32 "x"