Home | History | Annotate | Line # | Download | only in include
int_fmtio.h revision 1.5
      1 /*	$NetBSD: int_fmtio.h,v 1.5 2014/08/13 19:48:17 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 _POWERPC_INT_FMTIO_H_
     33 #define _POWERPC_INT_FMTIO_H_
     34 
     35 #ifdef __INTPTR_FMTd__
     36 #include <sys/common_int_fmtio.h>
     37 #else
     38 /*
     39  * 7.8.1 Macros for format specifiers
     40  */
     41 
     42 /* fprintf macros for signed integers */
     43 
     44 #define	PRId8		"d"	/* int8_t		*/
     45 #define	PRId16		"d"	/* int16_t		*/
     46 #define	PRId32		"d"	/* int32_t		*/
     47 #ifdef _LP64
     48 #define	PRId64		"ld"	/* int64_t		*/
     49 #else
     50 #define	PRId64		"lld"	/* int64_t		*/
     51 #endif
     52 #define	PRIdLEAST8	"d"	/* int_least8_t		*/
     53 #define	PRIdLEAST16	"d"	/* int_least16_t	*/
     54 #define	PRIdLEAST32	"d"	/* int_least32_t	*/
     55 #ifdef _LP64
     56 #define	PRIdLEAST64	"ld"	/* int_least64_t	*/
     57 #else
     58 #define	PRIdLEAST64	"lld"	/* int_least64_t	*/
     59 #endif
     60 #define	PRIdFAST8	"d"	/* int_fast8_t		*/
     61 #define	PRIdFAST16	"d"	/* int_fast16_t		*/
     62 #define	PRIdFAST32	"d"	/* int_fast32_t		*/
     63 #ifdef _LP64
     64 #define	PRIdFAST64	"ld"	/* int_fast64_t		*/
     65 #else
     66 #define	PRIdFAST64	"lld"	/* int_fast64_t		*/
     67 #endif
     68 #ifdef _LP64
     69 #define	PRIdMAX		"ld"	/* intmax_t		*/
     70 #define	PRIdPTR		"ld"	/* intptr_t		*/
     71 #else
     72 #define	PRIdMAX		"lld"	/* intmax_t		*/
     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 #define	PRIiPTR		"li"	/* intptr_t		*/
     99 #else
    100 #define	PRIiFAST64	"lli"	/* int_fast64_t		*/
    101 #define	PRIiMAX		"lli"	/* intmax_t		*/
    102 #define	PRIiPTR		"i"	/* intptr_t		*/
    103 #endif
    104 
    105 /* fprintf macros for unsigned integers */
    106 
    107 #define	PRIo8		"o"	/* uint8_t		*/
    108 #define	PRIo16		"o"	/* uint16_t		*/
    109 #define	PRIo32		"o"	/* uint32_t		*/
    110 #ifdef _LP64
    111 #define	PRIo64		"lo"	/* uint64_t		*/
    112 #else
    113 #define	PRIo64		"llo"	/* uint64_t		*/
    114 #endif
    115 #define	PRIoLEAST8	"o"	/* uint_least8_t	*/
    116 #define	PRIoLEAST16	"o"	/* uint_least16_t	*/
    117 #define	PRIoLEAST32	"o"	/* uint_least32_t	*/
    118 #ifdef _LP64
    119 #define	PRIoLEAST64	"lo"	/* uint_least64_t	*/
    120 #else
    121 #define	PRIoLEAST64	"llo"	/* uint_least64_t	*/
    122 #endif
    123 #define	PRIoFAST8	"o"	/* uint_fast8_t		*/
    124 #define	PRIoFAST16	"o"	/* uint_fast16_t	*/
    125 #define	PRIoFAST32	"o"	/* uint_fast32_t	*/
    126 #ifdef _LP64
    127 #define	PRIoFAST64	"lo"	/* uint_fast64_t	*/
    128 #define	PRIoMAX		"lo"	/* uintmax_t		*/
    129 #define	PRIoPTR		"lo"	/* uintptr_t		*/
    130 #else
    131 #define	PRIoFAST64	"llo"	/* uint_fast64_t	*/
    132 #define	PRIoMAX		"llo"	/* uintmax_t		*/
    133 #define	PRIoPTR		"o"	/* uintptr_t		*/
    134 #endif
    135 
    136 #define	PRIu8		"u"	/* uint8_t		*/
    137 #define	PRIu16		"u"	/* uint16_t		*/
    138 #define	PRIu32		"u"	/* uint32_t		*/
    139 #ifdef _LP64
    140 #define	PRIu64		"lu"	/* uint64_t		*/
    141 #else
    142 #define	PRIu64		"llu"	/* uint64_t		*/
    143 #endif
    144 #define	PRIuLEAST8	"u"	/* uint_least8_t	*/
    145 #define	PRIuLEAST16	"u"	/* uint_least16_t	*/
    146 #define	PRIuLEAST32	"u"	/* uint_least32_t	*/
    147 #ifdef _LP64
    148 #define	PRIuLEAST64	"lu"	/* uint_least64_t	*/
    149 #else
    150 #define	PRIuLEAST64	"llu"	/* uint_least64_t	*/
    151 #endif
    152 #define	PRIuFAST8	"u"	/* uint_fast8_t		*/
    153 #define	PRIuFAST16	"u"	/* uint_fast16_t	*/
    154 #define	PRIuFAST32	"u"	/* uint_fast32_t	*/
    155 #ifdef _LP64
    156 #define	PRIuFAST64	"lu"	/* uint_fast64_t	*/
    157 #define	PRIuMAX		"lu"	/* uintmax_t		*/
    158 #define	PRIuPTR		"lu"	/* uintptr_t		*/
    159 #else
    160 #define	PRIuFAST64	"llu"	/* uint_fast64_t	*/
    161 #define	PRIuMAX		"llu"	/* uintmax_t		*/
    162 #define	PRIuPTR		"u"	/* uintptr_t		*/
    163 #endif
    164 
    165 #define	PRIx8		"x"	/* uint8_t		*/
    166 #define	PRIx16		"x"	/* uint16_t		*/
    167 #define	PRIx32		"x"	/* uint32_t		*/
    168 #ifdef _LP64
    169 #define	PRIx64		"lx"	/* uint64_t		*/
    170 #else
    171 #define	PRIx64		"llx"	/* uint64_t		*/
    172 #endif
    173 #define	PRIxLEAST8	"x"	/* uint_least8_t	*/
    174 #define	PRIxLEAST16	"x"	/* uint_least16_t	*/
    175 #define	PRIxLEAST32	"x"	/* uint_least32_t	*/
    176 #ifdef _LP64
    177 #define	PRIxLEAST64	"lx"	/* uint_least64_t	*/
    178 #else
    179 #define	PRIxLEAST64	"llx"	/* uint_least64_t	*/
    180 #endif
    181 #define	PRIxFAST8	"x"	/* uint_fast8_t		*/
    182 #define	PRIxFAST16	"x"	/* uint_fast16_t	*/
    183 #define	PRIxFAST32	"x"	/* uint_fast32_t	*/
    184 #ifdef _LP64
    185 #define	PRIxFAST64	"lx"	/* uint_fast64_t	*/
    186 #define	PRIxMAX		"lx"	/* uintmax_t		*/
    187 #define	PRIxPTR		"lx"	/* uintptr_t		*/
    188 #else
    189 #define	PRIxFAST64	"llx"	/* uint_fast64_t	*/
    190 #define	PRIxMAX		"llx"	/* uintmax_t		*/
    191 #define	PRIxPTR		"x"	/* uintptr_t		*/
    192 #endif
    193 
    194 #define	PRIX8		"X"	/* uint8_t		*/
    195 #define	PRIX16		"X"	/* uint16_t		*/
    196 #define	PRIX32		"X"	/* uint32_t		*/
    197 #ifdef _LP64
    198 #define	PRIX64		"lX"	/* uint64_t		*/
    199 #else
    200 #define	PRIX64		"llX"	/* uint64_t		*/
    201 #endif
    202 #define	PRIXLEAST8	"X"	/* uint_least8_t	*/
    203 #define	PRIXLEAST16	"X"	/* uint_least16_t	*/
    204 #define	PRIXLEAST32	"X"	/* uint_least32_t	*/
    205 #ifdef _LP64
    206 #define	PRIXLEAST64	"lX"	/* uint_least64_t	*/
    207 #else
    208 #define	PRIXLEAST64	"llX"	/* uint_least64_t	*/
    209 #endif
    210 #define	PRIXFAST8	"X"	/* uint_fast8_t		*/
    211 #define	PRIXFAST16	"X"	/* uint_fast16_t	*/
    212 #define	PRIXFAST32	"X"	/* uint_fast32_t	*/
    213 #ifdef _LP64
    214 #define	PRIXFAST64	"lX"	/* uint_fast64_t	*/
    215 #define	PRIXMAX		"lX"	/* uintmax_t		*/
    216 #define	PRIXPTR		"lX"	/* uintptr_t		*/
    217 #else
    218 #define	PRIXFAST64	"llX"	/* uint_fast64_t	*/
    219 #define	PRIXMAX		"llX"	/* uintmax_t		*/
    220 #define	PRIXPTR		"X"	/* uintptr_t		*/
    221 #endif
    222 
    223 /* fscanf macros for signed integers */
    224 
    225 #define	SCNd8		"hhd"	/* int8_t		*/
    226 #define	SCNd16		"hd"	/* int16_t		*/
    227 #define	SCNd32		"d"	/* int32_t		*/
    228 #ifdef _LP64
    229 #define	SCNd64		"ld"	/* int64_t		*/
    230 #else
    231 #define	SCNd64		"lld"	/* int64_t		*/
    232 #endif
    233 #define	SCNdLEAST8	"hhd"	/* int_least8_t		*/
    234 #define	SCNdLEAST16	"hd"	/* int_least16_t	*/
    235 #define	SCNdLEAST32	"d"	/* int_least32_t	*/
    236 #ifdef _LP64
    237 #define	SCNdLEAST64	"ld"	/* int_least64_t	*/
    238 #else
    239 #define	SCNdLEAST64	"lld"	/* int_least64_t	*/
    240 #endif
    241 #define	SCNdFAST8	"d"	/* int_fast8_t		*/
    242 #define	SCNdFAST16	"d"	/* int_fast16_t		*/
    243 #define	SCNdFAST32	"d"	/* int_fast32_t		*/
    244 #ifdef _LP64
    245 #define	SCNdFAST64	"ld"	/* int_fast64_t		*/
    246 #define	SCNdMAX		"ld"	/* intmax_t		*/
    247 #define	SCNdPTR		"ld"	/* intptr_t		*/
    248 #else
    249 #define	SCNdFAST64	"lld"	/* int_fast64_t		*/
    250 #define	SCNdMAX		"lld"	/* intmax_t		*/
    251 #define	SCNdPTR		"d"	/* intptr_t		*/
    252 #endif
    253 
    254 #define	SCNi8		"hhi"	/* int8_t		*/
    255 #define	SCNi16		"hi"	/* int16_t		*/
    256 #define	SCNi32		"i"	/* int32_t		*/
    257 #ifdef _LP64
    258 #define	SCNi64		"li"	/* int64_t		*/
    259 #else
    260 #define	SCNi64		"lli"	/* int64_t		*/
    261 #endif
    262 #define	SCNiLEAST8	"hhi"	/* int_least8_t		*/
    263 #define	SCNiLEAST16	"hi"	/* int_least16_t	*/
    264 #define	SCNiLEAST32	"i"	/* int_least32_t	*/
    265 #ifdef _LP64
    266 #define	SCNiLEAST64	"li"	/* int_least64_t	*/
    267 #else
    268 #define	SCNiLEAST64	"lli"	/* int_least64_t	*/
    269 #endif
    270 #define	SCNiFAST8	"i"	/* int_fast8_t		*/
    271 #define	SCNiFAST16	"i"	/* int_fast16_t		*/
    272 #define	SCNiFAST32	"i"	/* int_fast32_t		*/
    273 #ifdef _LP64
    274 #define	SCNiFAST64	"li"	/* int_fast64_t		*/
    275 #define	SCNiMAX		"li"	/* intmax_t		*/
    276 #define	SCNiPTR		"li"	/* intptr_t		*/
    277 #else
    278 #define	SCNiFAST64	"lli"	/* int_fast64_t		*/
    279 #define	SCNiMAX		"lli"	/* intmax_t		*/
    280 #define	SCNiPTR		"i"	/* intptr_t		*/
    281 #endif
    282 
    283 /* fscanf macros for unsigned integers */
    284 
    285 #define	SCNo8		"hho"	/* uint8_t		*/
    286 #define	SCNo16		"ho"	/* uint16_t		*/
    287 #define	SCNo32		"o"	/* uint32_t		*/
    288 #ifdef _LP64
    289 #define	SCNo64		"lo"	/* uint64_t		*/
    290 #else
    291 #define	SCNo64		"llo"	/* uint64_t		*/
    292 #endif
    293 #define	SCNoLEAST8	"hho"	/* uint_least8_t	*/
    294 #define	SCNoLEAST16	"ho"	/* uint_least16_t	*/
    295 #define	SCNoLEAST32	"o"	/* uint_least32_t	*/
    296 #ifdef _LP64
    297 #define	SCNoLEAST64	"lo"	/* uint_least64_t	*/
    298 #else
    299 #define	SCNoLEAST64	"llo"	/* uint_least64_t	*/
    300 #endif
    301 #define	SCNoFAST8	"o"	/* uint_fast8_t		*/
    302 #define	SCNoFAST16	"o"	/* uint_fast16_t	*/
    303 #define	SCNoFAST32	"o"	/* uint_fast32_t	*/
    304 #ifdef _LP64
    305 #define	SCNoFAST64	"lo"	/* uint_fast64_t	*/
    306 #define	SCNoMAX		"lo"	/* uintmax_t		*/
    307 #define	SCNoPTR		"lo"	/* uintptr_t		*/
    308 #else
    309 #define	SCNoFAST64	"llo"	/* uint_fast64_t	*/
    310 #define	SCNoMAX		"llo"	/* uintmax_t		*/
    311 #define	SCNoPTR		"o"	/* uintptr_t		*/
    312 #endif
    313 
    314 #define	SCNu8		"hhu"	/* uint8_t		*/
    315 #define	SCNu16		"hu"	/* uint16_t		*/
    316 #define	SCNu32		"u"	/* uint32_t		*/
    317 #ifdef _LP64
    318 #define	SCNu64		"lu"	/* uint64_t		*/
    319 #else
    320 #define	SCNu64		"llu"	/* uint64_t		*/
    321 #endif
    322 #define	SCNuLEAST8	"hhu"	/* uint_least8_t	*/
    323 #define	SCNuLEAST16	"hu"	/* uint_least16_t	*/
    324 #define	SCNuLEAST32	"u"	/* uint_least32_t	*/
    325 #ifdef _LP64
    326 #define	SCNuLEAST64	"lu"	/* uint_least64_t	*/
    327 #else
    328 #define	SCNuLEAST64	"llu"	/* uint_least64_t	*/
    329 #endif
    330 #define	SCNuFAST8	"u"	/* uint_fast8_t		*/
    331 #define	SCNuFAST16	"u"	/* uint_fast16_t	*/
    332 #define	SCNuFAST32	"u"	/* uint_fast32_t	*/
    333 #ifdef _LP64
    334 #define	SCNuFAST64	"lu"	/* uint_fast64_t	*/
    335 #define	SCNuMAX		"lu"	/* uintmax_t		*/
    336 #define	SCNuPTR		"lu"	/* uintptr_t		*/
    337 #else
    338 #define	SCNuFAST64	"llu"	/* uint_fast64_t	*/
    339 #define	SCNuMAX		"llu"	/* uintmax_t		*/
    340 #define	SCNuPTR		"u"	/* uintptr_t		*/
    341 #endif
    342 
    343 #define	SCNx8		"hhx"	/* uint8_t		*/
    344 #define	SCNx16		"hx"	/* uint16_t		*/
    345 #define	SCNx32		"x"	/* uint32_t		*/
    346 #ifdef _LP64
    347 #define	SCNx64		"lx"	/* uint64_t		*/
    348 #else
    349 #define	SCNx64		"llx"	/* uint64_t		*/
    350 #endif
    351 #define	SCNxLEAST8	"hhx"	/* uint_least8_t	*/
    352 #define	SCNxLEAST16	"hx"	/* uint_least16_t	*/
    353 #define	SCNxLEAST32	"x"	/* uint_least32_t	*/
    354 #ifdef _LP64
    355 #define	SCNxLEAST64	"lx"	/* uint_least64_t	*/
    356 #else
    357 #define	SCNxLEAST64	"llx"	/* uint_least64_t	*/
    358 #endif
    359 #define	SCNxFAST8	"x"	/* uint_fast8_t		*/
    360 #define	SCNxFAST16	"x"	/* uint_fast16_t	*/
    361 #define	SCNxFAST32	"x"	/* uint_fast32_t	*/
    362 #ifdef _LP64
    363 #define	SCNxFAST64	"lx"	/* uint_fast64_t	*/
    364 #define	SCNxMAX		"lx"	/* uintmax_t		*/
    365 #define	SCNxPTR		"lx"	/* uintptr_t		*/
    366 #else
    367 #define	SCNxFAST64	"llx"	/* uint_fast64_t	*/
    368 #define	SCNxMAX		"llx"	/* uintmax_t		*/
    369 #define	SCNxPTR		"x"	/* uintptr_t		*/
    370 #endif
    371 
    372 #endif /* !__INTPTR_FMTd__ */
    373 
    374 #endif /* !_POWERPC_INT_FMTIO_H_ */
    375