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