1 /* $NetBSD: int_fmtio.h,v 1.5 2009/12/14 00:46:04 matt Exp $ */ 2 3 /*- 4 * Copyright (c) 2001 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Klaus Klein. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * POSSIBILITY OF SUCH DAMAGE. 30 */ 31 32 #ifndef _MIPS_INT_FMTIO_H_ 33 #define _MIPS_INT_FMTIO_H_ 34 35 /* 36 * 7.8.1 Macros for format specifiers 37 */ 38 39 /* fprintf macros for signed integers */ 40 41 #define PRId8 "d" /* int8_t */ 42 #define PRId16 "d" /* int16_t */ 43 #define PRId32 "d" /* int32_t */ 44 #ifdef _LP64 45 #define PRId64 "ld" /* int64_t */ 46 #else 47 #define PRId64 "lld" /* int64_t */ 48 #endif 49 #define PRIdLEAST8 "d" /* int_least8_t */ 50 #define PRIdLEAST16 "d" /* int_least16_t */ 51 #define PRIdLEAST32 "d" /* int_least32_t */ 52 #ifdef _LP64 53 #define PRIdLEAST64 "ld" /* int_least64_t */ 54 #else 55 #define PRIdLEAST64 "lld" /* int_least64_t */ 56 #endif 57 #define PRIdFAST8 "d" /* int_fast8_t */ 58 #define PRIdFAST16 "d" /* int_fast16_t */ 59 #define PRIdFAST32 "d" /* int_fast32_t */ 60 #ifdef _LP64 61 #define PRIdFAST64 "ld" /* int_fast64_t */ 62 #else 63 #define PRIdFAST64 "lld" /* int_fast64_t */ 64 #endif 65 #ifdef _LP64 66 #define PRIdMAX "ld" /* intmax_t */ 67 #else 68 #define PRIdMAX "lld" /* intmax_t */ 69 #endif 70 #ifndef __mips_o32 71 #define PRIdPTR "ld" /* intptr_t */ 72 #else 73 #define PRIdPTR "d" /* intptr_t */ 74 #endif 75 76 #define PRIi8 "i" /* int8_t */ 77 #define PRIi16 "i" /* int16_t */ 78 #define PRIi32 "i" /* int32_t */ 79 #ifdef _LP64 80 #define PRIi64 "li" /* int64_t */ 81 #else 82 #define PRIi64 "lli" /* int64_t */ 83 #endif 84 #define PRIiLEAST8 "i" /* int_least8_t */ 85 #define PRIiLEAST16 "i" /* int_least16_t */ 86 #define PRIiLEAST32 "i" /* int_least32_t */ 87 #ifdef _LP64 88 #define PRIiLEAST64 "li" /* int_least64_t */ 89 #else 90 #define PRIiLEAST64 "lli" /* int_least64_t */ 91 #endif 92 #define PRIiFAST8 "i" /* int_fast8_t */ 93 #define PRIiFAST16 "i" /* int_fast16_t */ 94 #define PRIiFAST32 "i" /* int_fast32_t */ 95 #ifdef _LP64 96 #define PRIiFAST64 "li" /* int_fast64_t */ 97 #define PRIiMAX "li" /* intmax_t */ 98 #else 99 #define PRIiFAST64 "lli" /* int_fast64_t */ 100 #define PRIiMAX "lli" /* intmax_t */ 101 #endif 102 #ifndef __mips_o32 103 #define PRIiPTR "li" /* intptr_t */ 104 #else 105 #define PRIiPTR "i" /* intptr_t */ 106 #endif 107 108 /* fprintf macros for unsigned integers */ 109 110 #define PRIo8 "o" /* uint8_t */ 111 #define PRIo16 "o" /* uint16_t */ 112 #define PRIo32 "o" /* uint32_t */ 113 #ifdef _LP64 114 #define PRIo64 "lo" /* uint64_t */ 115 #else 116 #define PRIo64 "llo" /* uint64_t */ 117 #endif 118 #define PRIoLEAST8 "o" /* uint_least8_t */ 119 #define PRIoLEAST16 "o" /* uint_least16_t */ 120 #define PRIoLEAST32 "o" /* uint_least32_t */ 121 #ifdef _LP64 122 #define PRIoLEAST64 "lo" /* uint_least64_t */ 123 #else 124 #define PRIoLEAST64 "llo" /* uint_least64_t */ 125 #endif 126 #define PRIoFAST8 "o" /* uint_fast8_t */ 127 #define PRIoFAST16 "o" /* uint_fast16_t */ 128 #define PRIoFAST32 "o" /* uint_fast32_t */ 129 #ifdef _LP64 130 #define PRIoFAST64 "lo" /* uint_fast64_t */ 131 #define PRIoMAX "lo" /* uintmax_t */ 132 #else 133 #define PRIoFAST64 "llo" /* uint_fast64_t */ 134 #define PRIoMAX "llo" /* uintmax_t */ 135 #endif 136 #ifndef __mips_o32 137 #define PRIoPTR "lo" /* intptr_t */ 138 #else 139 #define PRIoPTR "o" /* intptr_t */ 140 #endif 141 142 #define PRIu8 "u" /* uint8_t */ 143 #define PRIu16 "u" /* uint16_t */ 144 #define PRIu32 "u" /* uint32_t */ 145 #ifdef _LP64 146 #define PRIu64 "lu" /* uint64_t */ 147 #else 148 #define PRIu64 "llu" /* uint64_t */ 149 #endif 150 #define PRIuLEAST8 "u" /* uint_least8_t */ 151 #define PRIuLEAST16 "u" /* uint_least16_t */ 152 #define PRIuLEAST32 "u" /* uint_least32_t */ 153 #ifdef _LP64 154 #define PRIuLEAST64 "lu" /* uint_least64_t */ 155 #else 156 #define PRIuLEAST64 "llu" /* uint_least64_t */ 157 #endif 158 #define PRIuFAST8 "u" /* uint_fast8_t */ 159 #define PRIuFAST16 "u" /* uint_fast16_t */ 160 #define PRIuFAST32 "u" /* uint_fast32_t */ 161 #ifdef _LP64 162 #define PRIuFAST64 "lu" /* uint_fast64_t */ 163 #define PRIuMAX "lu" /* uintmax_t */ 164 #else 165 #define PRIuFAST64 "llu" /* uint_fast64_t */ 166 #define PRIuMAX "llu" /* uintmax_t */ 167 #endif 168 #ifndef __mips_o32 169 #define PRIuPTR "lu" /* intptr_t */ 170 #else 171 #define PRIuPTR "u" /* intptr_t */ 172 #endif 173 174 #define PRIx8 "x" /* uint8_t */ 175 #define PRIx16 "x" /* uint16_t */ 176 #define PRIx32 "x" /* uint32_t */ 177 #ifdef _LP64 178 #define PRIx64 "lx" /* uint64_t */ 179 #else 180 #define PRIx64 "llx" /* uint64_t */ 181 #endif 182 #define PRIxLEAST8 "x" /* uint_least8_t */ 183 #define PRIxLEAST16 "x" /* uint_least16_t */ 184 #define PRIxLEAST32 "x" /* uint_least32_t */ 185 #ifdef _LP64 186 #define PRIxLEAST64 "lx" /* uint_least64_t */ 187 #else 188 #define PRIxLEAST64 "llx" /* uint_least64_t */ 189 #endif 190 #define PRIxFAST8 "x" /* uint_fast8_t */ 191 #define PRIxFAST16 "x" /* uint_fast16_t */ 192 #define PRIxFAST32 "x" /* uint_fast32_t */ 193 #ifdef _LP64 194 #define PRIxFAST64 "lx" /* uint_fast64_t */ 195 #define PRIxMAX "lx" /* uintmax_t */ 196 #else 197 #define PRIxFAST64 "llx" /* uint_fast64_t */ 198 #define PRIxMAX "llx" /* uintmax_t */ 199 #endif 200 #ifndef __mips_o32 201 #define PRIxPTR "lx" /* uintptr_t */ 202 #else 203 #define PRIxPTR "x" /* uintptr_t */ 204 #endif 205 206 #define PRIX8 "X" /* uint8_t */ 207 #define PRIX16 "X" /* uint16_t */ 208 #define PRIX32 "X" /* uint32_t */ 209 #ifdef _LP64 210 #define PRIX64 "lX" /* uint64_t */ 211 #else 212 #define PRIX64 "llX" /* uint64_t */ 213 #endif 214 #define PRIXLEAST8 "X" /* uint_least8_t */ 215 #define PRIXLEAST16 "X" /* uint_least16_t */ 216 #define PRIXLEAST32 "X" /* uint_least32_t */ 217 #ifdef _LP64 218 #define PRIXLEAST64 "lX" /* uint_least64_t */ 219 #else 220 #define PRIXLEAST64 "llX" /* uint_least64_t */ 221 #endif 222 #define PRIXFAST8 "X" /* uint_fast8_t */ 223 #define PRIXFAST16 "X" /* uint_fast16_t */ 224 #define PRIXFAST32 "X" /* uint_fast32_t */ 225 #ifdef _LP64 226 #define PRIXFAST64 "lX" /* uint_fast64_t */ 227 #define PRIXMAX "lX" /* uintmax_t */ 228 #else 229 #define PRIXFAST64 "llX" /* uint_fast64_t */ 230 #define PRIXMAX "llX" /* uintmax_t */ 231 #endif 232 #ifndef __mips_o32 233 #define PRIXPTR "lX" /* uintptr_t */ 234 #else 235 #define PRIXPTR "X" /* uintptr_t */ 236 #endif 237 238 /* fscanf macros for signed integers */ 239 240 #define SCNd8 "hhd" /* int8_t */ 241 #define SCNd16 "hd" /* int16_t */ 242 #define SCNd32 "d" /* int32_t */ 243 #ifdef _LP64 244 #define SCNd64 "ld" /* int64_t */ 245 #else 246 #define SCNd64 "lld" /* int64_t */ 247 #endif 248 #define SCNdLEAST8 "hhd" /* int_least8_t */ 249 #define SCNdLEAST16 "hd" /* int_least16_t */ 250 #define SCNdLEAST32 "d" /* int_least32_t */ 251 #ifdef _LP64 252 #define SCNdLEAST64 "ld" /* int_least64_t */ 253 #else 254 #define SCNdLEAST64 "lld" /* int_least64_t */ 255 #endif 256 #define SCNdFAST8 "d" /* int_fast8_t */ 257 #define SCNdFAST16 "d" /* int_fast16_t */ 258 #define SCNdFAST32 "d" /* int_fast32_t */ 259 #ifdef _LP64 260 #define SCNdFAST64 "ld" /* int_fast64_t */ 261 #define SCNdMAX "ld" /* intmax_t */ 262 #else 263 #define SCNdFAST64 "lld" /* int_fast64_t */ 264 #define SCNdMAX "lld" /* intmax_t */ 265 #endif 266 #ifndef __mips_o32 267 #define SCNdPTR "ld" /* uintptr_t */ 268 #else 269 #define SCNdPTR "d" /* uintptr_t */ 270 #endif 271 272 #define SCNi8 "hhi" /* int8_t */ 273 #define SCNi16 "hi" /* int16_t */ 274 #define SCNi32 "i" /* int32_t */ 275 #ifdef _LP64 276 #define SCNi64 "li" /* int64_t */ 277 #else 278 #define SCNi64 "lli" /* int64_t */ 279 #endif 280 #define SCNiLEAST8 "hhi" /* int_least8_t */ 281 #define SCNiLEAST16 "hi" /* int_least16_t */ 282 #define SCNiLEAST32 "i" /* int_least32_t */ 283 #ifdef _LP64 284 #define SCNiLEAST64 "li" /* int_least64_t */ 285 #else 286 #define SCNiLEAST64 "lli" /* int_least64_t */ 287 #endif 288 #define SCNiFAST8 "i" /* int_fast8_t */ 289 #define SCNiFAST16 "i" /* int_fast16_t */ 290 #define SCNiFAST32 "i" /* int_fast32_t */ 291 #ifdef _LP64 292 #define SCNiFAST64 "li" /* int_fast64_t */ 293 #define SCNiMAX "li" /* intmax_t */ 294 #else 295 #define SCNiFAST64 "lli" /* int_fast64_t */ 296 #define SCNiMAX "lli" /* intmax_t */ 297 #endif 298 #ifndef __mips_o32 299 #define SCNiPTR "li" /* uintptr_t */ 300 #else 301 #define SCNiPTR "i" /* uintptr_t */ 302 #endif 303 304 /* fscanf macros for unsigned integers */ 305 306 #define SCNo8 "hho" /* uint8_t */ 307 #define SCNo16 "ho" /* uint16_t */ 308 #define SCNo32 "o" /* uint32_t */ 309 #ifdef _LP64 310 #define SCNo64 "lo" /* uint64_t */ 311 #else 312 #define SCNo64 "llo" /* uint64_t */ 313 #endif 314 #define SCNoLEAST8 "hho" /* uint_least8_t */ 315 #define SCNoLEAST16 "ho" /* uint_least16_t */ 316 #define SCNoLEAST32 "o" /* uint_least32_t */ 317 #ifdef _LP64 318 #define SCNoLEAST64 "lo" /* uint_least64_t */ 319 #else 320 #define SCNoLEAST64 "llo" /* uint_least64_t */ 321 #endif 322 #define SCNoFAST8 "o" /* uint_fast8_t */ 323 #define SCNoFAST16 "o" /* uint_fast16_t */ 324 #define SCNoFAST32 "o" /* uint_fast32_t */ 325 #ifdef _LP64 326 #define SCNoFAST64 "lo" /* uint_fast64_t */ 327 #define SCNoMAX "lo" /* uintmax_t */ 328 #else 329 #define SCNoFAST64 "llo" /* uint_fast64_t */ 330 #define SCNoMAX "llo" /* uintmax_t */ 331 #endif 332 #ifndef __mips_o32 333 #define SCNoPTR "lo" /* uintptr_t */ 334 #else 335 #define SCNoPTR "o" /* uintptr_t */ 336 #endif 337 338 #define SCNu8 "hhu" /* uint8_t */ 339 #define SCNu16 "hu" /* uint16_t */ 340 #define SCNu32 "u" /* uint32_t */ 341 #ifdef _LP64 342 #define SCNu64 "lu" /* uint64_t */ 343 #else 344 #define SCNu64 "llu" /* uint64_t */ 345 #endif 346 #define SCNuLEAST8 "hhu" /* uint_least8_t */ 347 #define SCNuLEAST16 "hu" /* uint_least16_t */ 348 #define SCNuLEAST32 "u" /* uint_least32_t */ 349 #ifdef _LP64 350 #define SCNuLEAST64 "lu" /* uint_least64_t */ 351 #else 352 #define SCNuLEAST64 "llu" /* uint_least64_t */ 353 #endif 354 #define SCNuFAST8 "u" /* uint_fast8_t */ 355 #define SCNuFAST16 "u" /* uint_fast16_t */ 356 #define SCNuFAST32 "u" /* uint_fast32_t */ 357 #ifdef _LP64 358 #define SCNuFAST64 "lu" /* uint_fast64_t */ 359 #define SCNuMAX "lu" /* uintmax_t */ 360 #else 361 #define SCNuFAST64 "llu" /* uint_fast64_t */ 362 #define SCNuMAX "llu" /* uintmax_t */ 363 #endif 364 #ifndef __mips_o32 365 #define SCNuPTR "lu" /* uintptr_t */ 366 #else 367 #define SCNuPTR "u" /* uintptr_t */ 368 #endif 369 370 #define SCNx8 "hhx" /* uint8_t */ 371 #define SCNx16 "hx" /* uint16_t */ 372 #define SCNx32 "x" /* uint32_t */ 373 #ifdef _LP64 374 #define SCNx64 "lx" /* uint64_t */ 375 #else 376 #define SCNx64 "llx" /* uint64_t */ 377 #endif 378 #define SCNxLEAST8 "hhx" /* uint_least8_t */ 379 #define SCNxLEAST16 "hx" /* uint_least16_t */ 380 #define SCNxLEAST32 "x" /* uint_least32_t */ 381 #ifdef _LP64 382 #define SCNxLEAST64 "lx" /* uint_least64_t */ 383 #else 384 #define SCNxLEAST64 "llx" /* uint_least64_t */ 385 #endif 386 #define SCNxFAST8 "x" /* uint_fast8_t */ 387 #define SCNxFAST16 "x" /* uint_fast16_t */ 388 #define SCNxFAST32 "x" /* uint_fast32_t */ 389 #ifdef _LP64 390 #define SCNxFAST64 "lx" /* uint_fast64_t */ 391 #define SCNxMAX "lx" /* uintmax_t */ 392 #else 393 #define SCNxFAST64 "llx" /* uint_fast64_t */ 394 #define SCNxMAX "llx" /* uintmax_t */ 395 #endif 396 #ifndef __mips_o32 397 #define SCNxPTR "lx" /* uintptr_t */ 398 #else 399 #define SCNxPTR "x" /* uintptr_t */ 400 #endif 401 402 #endif /* !_MIPS_INT_FMTIO_H_ */ 403