Home | History | Annotate | Line # | Download | only in include
int_fmtio.h revision 1.1
      1  1.1  kleink /*	$NetBSD: int_fmtio.h,v 1.1 2001/04/15 17:13:18 kleink Exp $	*/
      2  1.1  kleink 
      3  1.1  kleink /*-
      4  1.1  kleink  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5  1.1  kleink  * All rights reserved.
      6  1.1  kleink  *
      7  1.1  kleink  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  kleink  * by Klaus Klein.
      9  1.1  kleink  *
     10  1.1  kleink  * Redistribution and use in source and binary forms, with or without
     11  1.1  kleink  * modification, are permitted provided that the following conditions
     12  1.1  kleink  * are met:
     13  1.1  kleink  * 1. Redistributions of source code must retain the above copyright
     14  1.1  kleink  *    notice, this list of conditions and the following disclaimer.
     15  1.1  kleink  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  kleink  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  kleink  *    documentation and/or other materials provided with the distribution.
     18  1.1  kleink  * 3. All advertising materials mentioning features or use of this software
     19  1.1  kleink  *    must display the following acknowledgement:
     20  1.1  kleink  *        This product includes software developed by the NetBSD
     21  1.1  kleink  *        Foundation, Inc. and its contributors.
     22  1.1  kleink  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  kleink  *    contributors may be used to endorse or promote products derived
     24  1.1  kleink  *    from this software without specific prior written permission.
     25  1.1  kleink  *
     26  1.1  kleink  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  kleink  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  kleink  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  kleink  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  kleink  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  kleink  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  kleink  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  kleink  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  kleink  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  kleink  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  kleink  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  kleink  */
     38  1.1  kleink 
     39  1.1  kleink #ifndef _SPARC64_INT_FMTIO_H_
     40  1.1  kleink #define _SPARC64_INT_FMTIO_H_
     41  1.1  kleink 
     42  1.1  kleink /*
     43  1.1  kleink  * 7.8.1 Macros for format specifiers
     44  1.1  kleink  */
     45  1.1  kleink 
     46  1.1  kleink /* fprintf macros for signed integers */
     47  1.1  kleink 
     48  1.1  kleink #define	PRId8		"d"	/* int8_t		*/
     49  1.1  kleink #define	PRId16		"d"	/* int16_t		*/
     50  1.1  kleink #define	PRId32		"d"	/* int32_t		*/
     51  1.1  kleink #ifdef __arch64__
     52  1.1  kleink #define	PRId64		"ld"	/* int64_t		*/
     53  1.1  kleink #else
     54  1.1  kleink #define	PRId64		"lld"	/* int64_t		*/
     55  1.1  kleink #endif
     56  1.1  kleink #define	PRIdLEAST8	"d"	/* int_least8_t		*/
     57  1.1  kleink #define	PRIdLEAST16	"d"	/* int_least16_t	*/
     58  1.1  kleink #define	PRIdLEAST32	"d"	/* int_least32_t	*/
     59  1.1  kleink #ifdef __arch64__
     60  1.1  kleink #define	PRIdLEAST64	"ld"	/* int_least64_t	*/
     61  1.1  kleink #define	PRIdMAX		"ld"	/* intmax_t		*/
     62  1.1  kleink #else
     63  1.1  kleink #define	PRIdLEAST64	"lld"	/* int_least64_t	*/
     64  1.1  kleink #define	PRIdMAX		"lld"	/* intmax_t		*/
     65  1.1  kleink #endif
     66  1.1  kleink #define	PRIdPTR		"ld"	/* intptr_t		*/
     67  1.1  kleink 
     68  1.1  kleink #define	PRIi8		"i"	/* int8_t		*/
     69  1.1  kleink #define	PRIi16		"i"	/* int16_t		*/
     70  1.1  kleink #define	PRIi32		"i"	/* int32_t		*/
     71  1.1  kleink #ifdef __arch64__
     72  1.1  kleink #define	PRIi64		"li"	/* int64_t		*/
     73  1.1  kleink #else
     74  1.1  kleink #define	PRIi64		"lli"	/* int64_t		*/
     75  1.1  kleink #endif
     76  1.1  kleink #define	PRIiLEAST8	"i"	/* int_least8_t		*/
     77  1.1  kleink #define	PRIiLEAST16	"i"	/* int_least16_t	*/
     78  1.1  kleink #define	PRIiLEAST32	"i"	/* int_least32_t	*/
     79  1.1  kleink #ifdef __arch64__
     80  1.1  kleink #define	PRIiLEAST64	"li"	/* int_least64_t	*/
     81  1.1  kleink #define	PRIiMAX		"li"	/* intmax_t		*/
     82  1.1  kleink #else
     83  1.1  kleink #define	PRIiLEAST64	"lli"	/* int_least64_t	*/
     84  1.1  kleink #define	PRIiMAX		"lli"	/* intmax_t		*/
     85  1.1  kleink #endif
     86  1.1  kleink #define	PRIiPTR		"li"	/* intptr_t		*/
     87  1.1  kleink 
     88  1.1  kleink /* fprintf macros for unsigned integers */
     89  1.1  kleink 
     90  1.1  kleink #define	PRIo8		"o"	/* uint8_t		*/
     91  1.1  kleink #define	PRIo16		"o"	/* uint16_t		*/
     92  1.1  kleink #define	PRIo32		"o"	/* uint32_t		*/
     93  1.1  kleink #ifdef __arch64__
     94  1.1  kleink #define	PRIo64		"lo"	/* uint64_t		*/
     95  1.1  kleink #else
     96  1.1  kleink #define	PRIo64		"llo"	/* uint64_t		*/
     97  1.1  kleink #endif
     98  1.1  kleink #define	PRIoLEAST8	"o"	/* uint_least8_t	*/
     99  1.1  kleink #define	PRIoLEAST16	"o"	/* uint_least16_t	*/
    100  1.1  kleink #define	PRIoLEAST32	"o"	/* uint_least32_t	*/
    101  1.1  kleink #ifdef __arch64__
    102  1.1  kleink #define	PRIoLEAST64	"lo"	/* uint_least64_t	*/
    103  1.1  kleink #define	PRIoMAX		"lo"	/* uintmax_t		*/
    104  1.1  kleink #else
    105  1.1  kleink #define	PRIoLEAST64	"llo"	/* uint_least64_t	*/
    106  1.1  kleink #define	PRIoMAX		"llo"	/* uintmax_t		*/
    107  1.1  kleink #endif
    108  1.1  kleink #define	PRIoPTR		"lo"	/* uintptr_t		*/
    109  1.1  kleink 
    110  1.1  kleink #define	PRIu8		"u"	/* uint8_t		*/
    111  1.1  kleink #define	PRIu16		"u"	/* uint16_t		*/
    112  1.1  kleink #define	PRIu32		"u"	/* uint32_t		*/
    113  1.1  kleink #ifdef __arch64__
    114  1.1  kleink #define	PRIu64		"lu"	/* uint64_t		*/
    115  1.1  kleink #else
    116  1.1  kleink #define	PRIu64		"llu"	/* uint64_t		*/
    117  1.1  kleink #endif
    118  1.1  kleink #define	PRIuLEAST8	"u"	/* uint_least8_t	*/
    119  1.1  kleink #define	PRIuLEAST16	"u"	/* uint_least16_t	*/
    120  1.1  kleink #define	PRIuLEAST32	"u"	/* uint_least32_t	*/
    121  1.1  kleink #ifdef __arch64__
    122  1.1  kleink #define	PRIuLEAST64	"lu"	/* uint_least64_t	*/
    123  1.1  kleink #define	PRIuMAX		"lu"	/* uintmax_t		*/
    124  1.1  kleink #else
    125  1.1  kleink #define	PRIuLEAST64	"llu"	/* uint_least64_t	*/
    126  1.1  kleink #define	PRIuMAX		"llu"	/* uintmax_t		*/
    127  1.1  kleink #endif
    128  1.1  kleink #define	PRIuPTR		"lu"	/* uintptr_t		*/
    129  1.1  kleink 
    130  1.1  kleink #define	PRIx8		"x"	/* uint8_t		*/
    131  1.1  kleink #define	PRIx16		"x"	/* uint16_t		*/
    132  1.1  kleink #define	PRIx32		"x"	/* uint32_t		*/
    133  1.1  kleink #ifdef __arch64__
    134  1.1  kleink #define	PRIx64		"lx"	/* uint64_t		*/
    135  1.1  kleink #else
    136  1.1  kleink #define	PRIx64		"llx"	/* uint64_t		*/
    137  1.1  kleink #endif
    138  1.1  kleink #define	PRIxLEAST8	"x"	/* uint_least8_t	*/
    139  1.1  kleink #define	PRIxLEAST16	"x"	/* uint_least16_t	*/
    140  1.1  kleink #define	PRIxLEAST32	"x"	/* uint_least32_t	*/
    141  1.1  kleink #ifdef __arch64__
    142  1.1  kleink #define	PRIxLEAST64	"lx"	/* uint_least64_t	*/
    143  1.1  kleink #define	PRIxMAX		"lx"	/* uintmax_t		*/
    144  1.1  kleink #else
    145  1.1  kleink #define	PRIxLEAST64	"llx"	/* uint_least64_t	*/
    146  1.1  kleink #define	PRIxMAX		"llx"	/* uintmax_t		*/
    147  1.1  kleink #endif
    148  1.1  kleink #define	PRIxPTR		"lx"	/* uintptr_t		*/
    149  1.1  kleink 
    150  1.1  kleink #define	PRIX8		"X"	/* uint8_t		*/
    151  1.1  kleink #define	PRIX16		"X"	/* uint16_t		*/
    152  1.1  kleink #define	PRIX32		"X"	/* uint32_t		*/
    153  1.1  kleink #ifdef __arch64__
    154  1.1  kleink #define	PRIX64		"lX"	/* uint64_t		*/
    155  1.1  kleink #else
    156  1.1  kleink #define	PRIX64		"llX"	/* uint64_t		*/
    157  1.1  kleink #endif
    158  1.1  kleink #define	PRIXLEAST8	"X"	/* uint_least8_t	*/
    159  1.1  kleink #define	PRIXLEAST16	"X"	/* uint_least16_t	*/
    160  1.1  kleink #define	PRIXLEAST32	"X"	/* uint_least32_t	*/
    161  1.1  kleink #ifdef __arch64__
    162  1.1  kleink #define	PRIXLEAST64	"lX"	/* uint_least64_t	*/
    163  1.1  kleink #define	PRIXMAX		"lX"	/* uintmax_t		*/
    164  1.1  kleink #else
    165  1.1  kleink #define	PRIXLEAST64	"llX"	/* uint_least64_t	*/
    166  1.1  kleink #define	PRIXMAX		"llX"	/* uintmax_t		*/
    167  1.1  kleink #endif
    168  1.1  kleink #define	PRIXPTR		"lX"	/* uintptr_t		*/
    169  1.1  kleink 
    170  1.1  kleink /* fscanf macros for signed integers */
    171  1.1  kleink 
    172  1.1  kleink #define	SCNd8		"hhd"	/* int8_t		*/
    173  1.1  kleink #define	SCNd16		"hd"	/* int16_t		*/
    174  1.1  kleink #define	SCNd32		"d"	/* int32_t		*/
    175  1.1  kleink #ifdef __arch64__
    176  1.1  kleink #define	SCNd64		"ld"	/* int64_t		*/
    177  1.1  kleink #else
    178  1.1  kleink #define	SCNd64		"lld"	/* int64_t		*/
    179  1.1  kleink #endif
    180  1.1  kleink #define	SCNdLEAST8	"hhd"	/* int_least8_t		*/
    181  1.1  kleink #define	SCNdLEAST16	"hd"	/* int_least16_t	*/
    182  1.1  kleink #define	SCNdLEAST32	"d"	/* int_least32_t	*/
    183  1.1  kleink #ifdef __arch64__
    184  1.1  kleink #define	SCNdLEAST64	"ld"	/* int_least64_t	*/
    185  1.1  kleink #define	SCNdMAX		"ld"	/* intmax_t		*/
    186  1.1  kleink #else
    187  1.1  kleink #define	SCNdLEAST64	"lld"	/* int_least64_t	*/
    188  1.1  kleink #define	SCNdMAX		"lld"	/* intmax_t		*/
    189  1.1  kleink #endif
    190  1.1  kleink #define	SCNdPTR		"ld"	/* intptr_t		*/
    191  1.1  kleink 
    192  1.1  kleink #define	SCNi8		"hhi"	/* int8_t		*/
    193  1.1  kleink #define	SCNi16		"hi"	/* int16_t		*/
    194  1.1  kleink #define	SCNi32		"i"	/* int32_t		*/
    195  1.1  kleink #ifdef __arch64__
    196  1.1  kleink #define	SCNi64		"li"	/* int64_t		*/
    197  1.1  kleink #else
    198  1.1  kleink #define	SCNi64		"lli"	/* int64_t		*/
    199  1.1  kleink #endif
    200  1.1  kleink #define	SCNiLEAST8	"hhi"	/* int_least8_t		*/
    201  1.1  kleink #define	SCNiLEAST16	"hi"	/* int_least16_t	*/
    202  1.1  kleink #define	SCNiLEAST32	"i"	/* int_least32_t	*/
    203  1.1  kleink #ifdef __arch64__
    204  1.1  kleink #define	SCNiLEAST64	"li"	/* int_least64_t	*/
    205  1.1  kleink #define	SCNiMAX		"li"	/* intmax_t		*/
    206  1.1  kleink #else
    207  1.1  kleink #define	SCNiLEAST64	"lli"	/* int_least64_t	*/
    208  1.1  kleink #define	SCNiMAX		"lli"	/* intmax_t		*/
    209  1.1  kleink #endif
    210  1.1  kleink #define	SCNiPTR		"li"	/* intptr_t		*/
    211  1.1  kleink 
    212  1.1  kleink /* fscanf macros for unsigned integers */
    213  1.1  kleink 
    214  1.1  kleink #define	SCNo8		"hho"	/* uint8_t		*/
    215  1.1  kleink #define	SCNo16		"ho"	/* uint16_t		*/
    216  1.1  kleink #define	SCNo32		"o"	/* uint32_t		*/
    217  1.1  kleink #ifdef __arch64__
    218  1.1  kleink #define	SCNo64		"lo"	/* uint64_t		*/
    219  1.1  kleink #else
    220  1.1  kleink #define	SCNo64		"llo"	/* uint64_t		*/
    221  1.1  kleink #endif
    222  1.1  kleink #define	SCNoLEAST8	"hho"	/* uint_least8_t	*/
    223  1.1  kleink #define	SCNoLEAST16	"ho"	/* uint_least16_t	*/
    224  1.1  kleink #define	SCNoLEAST32	"o"	/* uint_least32_t	*/
    225  1.1  kleink #ifdef __arch64__
    226  1.1  kleink #define	SCNoLEAST64	"lo"	/* uint_least64_t	*/
    227  1.1  kleink #define	SCNoMAX		"lo"	/* uintmax_t		*/
    228  1.1  kleink #else
    229  1.1  kleink #define	SCNoLEAST64	"llo"	/* uint_least64_t	*/
    230  1.1  kleink #define	SCNoMAX		"llo"	/* uintmax_t		*/
    231  1.1  kleink #endif
    232  1.1  kleink #define	SCNoPTR		"lo"	/* uintptr_t		*/
    233  1.1  kleink 
    234  1.1  kleink #define	SCNu8		"hhu"	/* uint8_t		*/
    235  1.1  kleink #define	SCNu16		"hu"	/* uint16_t		*/
    236  1.1  kleink #define	SCNu32		"u"	/* uint32_t		*/
    237  1.1  kleink #ifdef __arch64__
    238  1.1  kleink #define	SCNu64		"lu"	/* uint64_t		*/
    239  1.1  kleink #else
    240  1.1  kleink #define	SCNu64		"llu"	/* uint64_t		*/
    241  1.1  kleink #endif
    242  1.1  kleink #define	SCNuLEAST8	"hhu"	/* uint_least8_t	*/
    243  1.1  kleink #define	SCNuLEAST16	"hu"	/* uint_least16_t	*/
    244  1.1  kleink #define	SCNuLEAST32	"u"	/* uint_least32_t	*/
    245  1.1  kleink #ifdef __arch64__
    246  1.1  kleink #define	SCNuLEAST64	"lu"	/* uint_least64_t	*/
    247  1.1  kleink #define	SCNuMAX		"lu"	/* uintmax_t		*/
    248  1.1  kleink #else
    249  1.1  kleink #define	SCNuLEAST64	"llu"	/* uint_least64_t	*/
    250  1.1  kleink #define	SCNuMAX		"llu"	/* uintmax_t		*/
    251  1.1  kleink #endif
    252  1.1  kleink #define	SCNuPTR		"lu"	/* uintptr_t		*/
    253  1.1  kleink 
    254  1.1  kleink #define	SCNx8		"hhx"	/* uint8_t		*/
    255  1.1  kleink #define	SCNx16		"hx"	/* uint16_t		*/
    256  1.1  kleink #define	SCNx32		"x"	/* uint32_t		*/
    257  1.1  kleink #ifdef __arch64__
    258  1.1  kleink #define	SCNx64		"lx"	/* uint64_t		*/
    259  1.1  kleink #else
    260  1.1  kleink #define	SCNx64		"llx"	/* uint64_t		*/
    261  1.1  kleink #endif
    262  1.1  kleink #define	SCNxLEAST8	"hhx"	/* uint_least8_t	*/
    263  1.1  kleink #define	SCNxLEAST16	"hx"	/* uint_least16_t	*/
    264  1.1  kleink #define	SCNxLEAST32	"x"	/* uint_least32_t	*/
    265  1.1  kleink #ifdef __arch64__
    266  1.1  kleink #define	SCNxLEAST64	"lx"	/* uint_least64_t	*/
    267  1.1  kleink #define	SCNxMAX		"lx"	/* uintmax_t		*/
    268  1.1  kleink #else
    269  1.1  kleink #define	SCNxLEAST64	"llx"	/* uint_least64_t	*/
    270  1.1  kleink #define	SCNxMAX		"llx"	/* uintmax_t		*/
    271  1.1  kleink #endif
    272  1.1  kleink #define	SCNxPTR		"lx"	/* uintptr_t		*/
    273  1.1  kleink 
    274  1.1  kleink #endif /* !_SPARC64_INT_FMTIO_H_ */
    275