1 1.7 joerg /* $NetBSD: int_fmtio.h,v 1.7 2014/07/25 21:43:13 joerg Exp $ */ 2 1.1 fvdl 3 1.1 fvdl /*- 4 1.1 fvdl * Copyright (c) 2001 The NetBSD Foundation, Inc. 5 1.1 fvdl * All rights reserved. 6 1.1 fvdl * 7 1.1 fvdl * This code is derived from software contributed to The NetBSD Foundation 8 1.1 fvdl * by Klaus Klein. 9 1.1 fvdl * 10 1.1 fvdl * Redistribution and use in source and binary forms, with or without 11 1.1 fvdl * modification, are permitted provided that the following conditions 12 1.1 fvdl * are met: 13 1.1 fvdl * 1. Redistributions of source code must retain the above copyright 14 1.1 fvdl * notice, this list of conditions and the following disclaimer. 15 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 fvdl * notice, this list of conditions and the following disclaimer in the 17 1.1 fvdl * documentation and/or other materials provided with the distribution. 18 1.1 fvdl * 19 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.1 fvdl * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.1 fvdl * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.1 fvdl * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.1 fvdl * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.1 fvdl * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.1 fvdl * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.1 fvdl * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.1 fvdl * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.1 fvdl * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.1 fvdl * POSSIBILITY OF SUCH DAMAGE. 30 1.1 fvdl */ 31 1.1 fvdl 32 1.1 fvdl #ifndef _AMD64_INT_FMTIO_H_ 33 1.1 fvdl #define _AMD64_INT_FMTIO_H_ 34 1.1 fvdl 35 1.7 joerg #ifdef __INTPTR_FMTd__ 36 1.7 joerg #include <sys/common_int_fmtio.h> 37 1.7 joerg #else 38 1.7 joerg 39 1.6 mrg #ifdef __x86_64__ 40 1.6 mrg 41 1.1 fvdl /* 42 1.1 fvdl * 7.8.1 Macros for format specifiers 43 1.1 fvdl */ 44 1.1 fvdl 45 1.1 fvdl /* fprintf macros for signed integers */ 46 1.1 fvdl 47 1.1 fvdl #define PRId8 "d" /* int8_t */ 48 1.1 fvdl #define PRId16 "d" /* int16_t */ 49 1.1 fvdl #define PRId32 "d" /* int32_t */ 50 1.1 fvdl #define PRId64 "ld" /* int64_t */ 51 1.1 fvdl #define PRIdLEAST8 "d" /* int_least8_t */ 52 1.1 fvdl #define PRIdLEAST16 "d" /* int_least16_t */ 53 1.1 fvdl #define PRIdLEAST32 "d" /* int_least32_t */ 54 1.1 fvdl #define PRIdLEAST64 "ld" /* int_least64_t */ 55 1.1 fvdl #define PRIdFAST8 "d" /* int_fast8_t */ 56 1.1 fvdl #define PRIdFAST16 "d" /* int_fast16_t */ 57 1.1 fvdl #define PRIdFAST32 "d" /* int_fast32_t */ 58 1.1 fvdl #define PRIdFAST64 "ld" /* int_fast64_t */ 59 1.1 fvdl #define PRIdMAX "ld" /* intmax_t */ 60 1.1 fvdl #define PRIdPTR "ld" /* intptr_t */ 61 1.1 fvdl 62 1.1 fvdl #define PRIi8 "i" /* int8_t */ 63 1.1 fvdl #define PRIi16 "i" /* int16_t */ 64 1.1 fvdl #define PRIi32 "i" /* int32_t */ 65 1.1 fvdl #define PRIi64 "li" /* int64_t */ 66 1.1 fvdl #define PRIiLEAST8 "i" /* int_least8_t */ 67 1.1 fvdl #define PRIiLEAST16 "i" /* int_least16_t */ 68 1.1 fvdl #define PRIiLEAST32 "i" /* int_least32_t */ 69 1.1 fvdl #define PRIiLEAST64 "li" /* int_least64_t */ 70 1.1 fvdl #define PRIiFAST8 "i" /* int_fast8_t */ 71 1.1 fvdl #define PRIiFAST16 "i" /* int_fast16_t */ 72 1.1 fvdl #define PRIiFAST32 "i" /* int_fast32_t */ 73 1.1 fvdl #define PRIiFAST64 "li" /* int_fast64_t */ 74 1.1 fvdl #define PRIiMAX "li" /* intmax_t */ 75 1.1 fvdl #define PRIiPTR "li" /* intptr_t */ 76 1.1 fvdl 77 1.1 fvdl /* fprintf macros for unsigned integers */ 78 1.1 fvdl 79 1.1 fvdl #define PRIo8 "o" /* uint8_t */ 80 1.1 fvdl #define PRIo16 "o" /* uint16_t */ 81 1.1 fvdl #define PRIo32 "o" /* uint32_t */ 82 1.1 fvdl #define PRIo64 "lo" /* uint64_t */ 83 1.1 fvdl #define PRIoLEAST8 "o" /* uint_least8_t */ 84 1.1 fvdl #define PRIoLEAST16 "o" /* uint_least16_t */ 85 1.1 fvdl #define PRIoLEAST32 "o" /* uint_least32_t */ 86 1.1 fvdl #define PRIoLEAST64 "lo" /* uint_least64_t */ 87 1.1 fvdl #define PRIoFAST8 "o" /* uint_fast8_t */ 88 1.1 fvdl #define PRIoFAST16 "o" /* uint_fast16_t */ 89 1.1 fvdl #define PRIoFAST32 "o" /* uint_fast32_t */ 90 1.1 fvdl #define PRIoFAST64 "lo" /* uint_fast64_t */ 91 1.1 fvdl #define PRIoMAX "lo" /* uintmax_t */ 92 1.1 fvdl #define PRIoPTR "lo" /* uintptr_t */ 93 1.1 fvdl 94 1.1 fvdl #define PRIu8 "u" /* uint8_t */ 95 1.1 fvdl #define PRIu16 "u" /* uint16_t */ 96 1.1 fvdl #define PRIu32 "u" /* uint32_t */ 97 1.1 fvdl #define PRIu64 "lu" /* uint64_t */ 98 1.1 fvdl #define PRIuLEAST8 "u" /* uint_least8_t */ 99 1.1 fvdl #define PRIuLEAST16 "u" /* uint_least16_t */ 100 1.1 fvdl #define PRIuLEAST32 "u" /* uint_least32_t */ 101 1.1 fvdl #define PRIuLEAST64 "lu" /* uint_least64_t */ 102 1.1 fvdl #define PRIuFAST8 "u" /* uint_fast8_t */ 103 1.1 fvdl #define PRIuFAST16 "u" /* uint_fast16_t */ 104 1.1 fvdl #define PRIuFAST32 "u" /* uint_fast32_t */ 105 1.1 fvdl #define PRIuFAST64 "lu" /* uint_fast64_t */ 106 1.1 fvdl #define PRIuMAX "lu" /* uintmax_t */ 107 1.1 fvdl #define PRIuPTR "lu" /* uintptr_t */ 108 1.1 fvdl 109 1.1 fvdl #define PRIx8 "x" /* uint8_t */ 110 1.1 fvdl #define PRIx16 "x" /* uint16_t */ 111 1.1 fvdl #define PRIx32 "x" /* uint32_t */ 112 1.1 fvdl #define PRIx64 "lx" /* uint64_t */ 113 1.1 fvdl #define PRIxLEAST8 "x" /* uint_least8_t */ 114 1.1 fvdl #define PRIxLEAST16 "x" /* uint_least16_t */ 115 1.1 fvdl #define PRIxLEAST32 "x" /* uint_least32_t */ 116 1.1 fvdl #define PRIxLEAST64 "lx" /* uint_least64_t */ 117 1.1 fvdl #define PRIxFAST8 "x" /* uint_fast8_t */ 118 1.1 fvdl #define PRIxFAST16 "x" /* uint_fast16_t */ 119 1.1 fvdl #define PRIxFAST32 "x" /* uint_fast32_t */ 120 1.1 fvdl #define PRIxFAST64 "lx" /* uint_fast64_t */ 121 1.1 fvdl #define PRIxMAX "lx" /* uintmax_t */ 122 1.1 fvdl #define PRIxPTR "lx" /* uintptr_t */ 123 1.1 fvdl 124 1.1 fvdl #define PRIX8 "X" /* uint8_t */ 125 1.1 fvdl #define PRIX16 "X" /* uint16_t */ 126 1.1 fvdl #define PRIX32 "X" /* uint32_t */ 127 1.1 fvdl #define PRIX64 "lX" /* uint64_t */ 128 1.1 fvdl #define PRIXLEAST8 "X" /* uint_least8_t */ 129 1.1 fvdl #define PRIXLEAST16 "X" /* uint_least16_t */ 130 1.1 fvdl #define PRIXLEAST32 "X" /* uint_least32_t */ 131 1.1 fvdl #define PRIXLEAST64 "lX" /* uint_least64_t */ 132 1.1 fvdl #define PRIXFAST8 "X" /* uint_fast8_t */ 133 1.1 fvdl #define PRIXFAST16 "X" /* uint_fast16_t */ 134 1.1 fvdl #define PRIXFAST32 "X" /* uint_fast32_t */ 135 1.1 fvdl #define PRIXFAST64 "lX" /* uint_fast64_t */ 136 1.1 fvdl #define PRIXMAX "lX" /* uintmax_t */ 137 1.1 fvdl #define PRIXPTR "lX" /* uintptr_t */ 138 1.1 fvdl 139 1.1 fvdl /* fscanf macros for signed integers */ 140 1.1 fvdl 141 1.1 fvdl #define SCNd8 "hhd" /* int8_t */ 142 1.1 fvdl #define SCNd16 "hd" /* int16_t */ 143 1.1 fvdl #define SCNd32 "d" /* int32_t */ 144 1.1 fvdl #define SCNd64 "ld" /* int64_t */ 145 1.1 fvdl #define SCNdLEAST8 "hhd" /* int_least8_t */ 146 1.1 fvdl #define SCNdLEAST16 "hd" /* int_least16_t */ 147 1.1 fvdl #define SCNdLEAST32 "d" /* int_least32_t */ 148 1.1 fvdl #define SCNdLEAST64 "ld" /* int_least64_t */ 149 1.3 kleink #define SCNdFAST8 "d" /* int_fast8_t */ 150 1.3 kleink #define SCNdFAST16 "d" /* int_fast16_t */ 151 1.1 fvdl #define SCNdFAST32 "d" /* int_fast32_t */ 152 1.1 fvdl #define SCNdFAST64 "ld" /* int_fast64_t */ 153 1.1 fvdl #define SCNdMAX "ld" /* intmax_t */ 154 1.1 fvdl #define SCNdPTR "ld" /* intptr_t */ 155 1.1 fvdl 156 1.1 fvdl #define SCNi8 "hhi" /* int8_t */ 157 1.1 fvdl #define SCNi16 "hi" /* int16_t */ 158 1.1 fvdl #define SCNi32 "i" /* int32_t */ 159 1.2 fvdl #define SCNi64 "li" /* int64_t */ 160 1.1 fvdl #define SCNiLEAST8 "hhi" /* int_least8_t */ 161 1.1 fvdl #define SCNiLEAST16 "hi" /* int_least16_t */ 162 1.1 fvdl #define SCNiLEAST32 "i" /* int_least32_t */ 163 1.1 fvdl #define SCNiLEAST64 "li" /* int_least64_t */ 164 1.3 kleink #define SCNiFAST8 "i" /* int_fast8_t */ 165 1.3 kleink #define SCNiFAST16 "i" /* int_fast16_t */ 166 1.1 fvdl #define SCNiFAST32 "i" /* int_fast32_t */ 167 1.1 fvdl #define SCNiFAST64 "li" /* int_fast64_t */ 168 1.1 fvdl #define SCNiMAX "li" /* intmax_t */ 169 1.1 fvdl #define SCNiPTR "li" /* intptr_t */ 170 1.1 fvdl 171 1.1 fvdl /* fscanf macros for unsigned integers */ 172 1.1 fvdl 173 1.1 fvdl #define SCNo8 "hho" /* uint8_t */ 174 1.1 fvdl #define SCNo16 "ho" /* uint16_t */ 175 1.1 fvdl #define SCNo32 "o" /* uint32_t */ 176 1.1 fvdl #define SCNo64 "lo" /* uint64_t */ 177 1.1 fvdl #define SCNoLEAST8 "hho" /* uint_least8_t */ 178 1.1 fvdl #define SCNoLEAST16 "ho" /* uint_least16_t */ 179 1.1 fvdl #define SCNoLEAST32 "o" /* uint_least32_t */ 180 1.1 fvdl #define SCNoLEAST64 "lo" /* uint_least64_t */ 181 1.3 kleink #define SCNoFAST8 "o" /* uint_fast8_t */ 182 1.3 kleink #define SCNoFAST16 "o" /* uint_fast16_t */ 183 1.1 fvdl #define SCNoFAST32 "o" /* uint_fast32_t */ 184 1.1 fvdl #define SCNoFAST64 "lo" /* uint_fast64_t */ 185 1.1 fvdl #define SCNoMAX "lo" /* uintmax_t */ 186 1.1 fvdl #define SCNoPTR "lo" /* uintptr_t */ 187 1.1 fvdl 188 1.1 fvdl #define SCNu8 "hhu" /* uint8_t */ 189 1.1 fvdl #define SCNu16 "hu" /* uint16_t */ 190 1.1 fvdl #define SCNu32 "u" /* uint32_t */ 191 1.1 fvdl #define SCNu64 "lu" /* uint64_t */ 192 1.1 fvdl #define SCNuLEAST8 "hhu" /* uint_least8_t */ 193 1.1 fvdl #define SCNuLEAST16 "hu" /* uint_least16_t */ 194 1.1 fvdl #define SCNuLEAST32 "u" /* uint_least32_t */ 195 1.1 fvdl #define SCNuLEAST64 "lu" /* uint_least64_t */ 196 1.3 kleink #define SCNuFAST8 "u" /* uint_fast8_t */ 197 1.3 kleink #define SCNuFAST16 "u" /* uint_fast16_t */ 198 1.1 fvdl #define SCNuFAST32 "u" /* uint_fast32_t */ 199 1.1 fvdl #define SCNuFAST64 "lu" /* uint_fast64_t */ 200 1.1 fvdl #define SCNuMAX "lu" /* uintmax_t */ 201 1.1 fvdl #define SCNuPTR "lu" /* uintptr_t */ 202 1.1 fvdl 203 1.1 fvdl #define SCNx8 "hhx" /* uint8_t */ 204 1.1 fvdl #define SCNx16 "hx" /* uint16_t */ 205 1.1 fvdl #define SCNx32 "x" /* uint32_t */ 206 1.1 fvdl #define SCNx64 "lx" /* uint64_t */ 207 1.1 fvdl #define SCNxLEAST8 "hhx" /* uint_least8_t */ 208 1.1 fvdl #define SCNxLEAST16 "hx" /* uint_least16_t */ 209 1.1 fvdl #define SCNxLEAST32 "x" /* uint_least32_t */ 210 1.1 fvdl #define SCNxLEAST64 "lx" /* uint_least64_t */ 211 1.3 kleink #define SCNxFAST8 "x" /* uint_fast8_t */ 212 1.3 kleink #define SCNxFAST16 "x" /* uint_fast16_t */ 213 1.1 fvdl #define SCNxFAST32 "x" /* uint_fast32_t */ 214 1.1 fvdl #define SCNxFAST64 "lx" /* uint_fast64_t */ 215 1.1 fvdl #define SCNxMAX "lx" /* uintmax_t */ 216 1.1 fvdl #define SCNxPTR "lx" /* uintptr_t */ 217 1.1 fvdl 218 1.6 mrg #else /* __x86_64__ */ 219 1.6 mrg 220 1.6 mrg #include <i386/int_fmtio.h> 221 1.6 mrg 222 1.6 mrg #endif /* __x86_64__ */ 223 1.6 mrg 224 1.7 joerg #endif 225 1.7 joerg 226 1.1 fvdl #endif /* !_AMD64_INT_FMTIO_H_ */ 227