int_fmtio.h revision 1.1
1/*	$NetBSD: int_fmtio.h,v 1.1 2001/04/15 17:13:17 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#define	PRIdMAX		"ld"	/* intmax_t		*/
62#else
63#define	PRIdLEAST64	"lld"	/* int_least64_t	*/
64#define	PRIdMAX		"lld"	/* intmax_t		*/
65#endif
66#define	PRIdPTR		"ld"	/* intptr_t		*/
67
68#define	PRIi8		"i"	/* int8_t		*/
69#define	PRIi16		"i"	/* int16_t		*/
70#define	PRIi32		"i"	/* int32_t		*/
71#ifdef __arch64__
72#define	PRIi64		"li"	/* int64_t		*/
73#else
74#define	PRIi64		"lli"	/* int64_t		*/
75#endif
76#define	PRIiLEAST8	"i"	/* int_least8_t		*/
77#define	PRIiLEAST16	"i"	/* int_least16_t	*/
78#define	PRIiLEAST32	"i"	/* int_least32_t	*/
79#ifdef __arch64__
80#define	PRIiLEAST64	"li"	/* int_least64_t	*/
81#define	PRIiMAX		"li"	/* intmax_t		*/
82#else
83#define	PRIiLEAST64	"lli"	/* int_least64_t	*/
84#define	PRIiMAX		"lli"	/* intmax_t		*/
85#endif
86#define	PRIiPTR		"li"	/* intptr_t		*/
87
88/* fprintf macros for unsigned integers */
89
90#define	PRIo8		"o"	/* uint8_t		*/
91#define	PRIo16		"o"	/* uint16_t		*/
92#define	PRIo32		"o"	/* uint32_t		*/
93#ifdef __arch64__
94#define	PRIo64		"lo"	/* uint64_t		*/
95#else
96#define	PRIo64		"llo"	/* uint64_t		*/
97#endif
98#define	PRIoLEAST8	"o"	/* uint_least8_t	*/
99#define	PRIoLEAST16	"o"	/* uint_least16_t	*/
100#define	PRIoLEAST32	"o"	/* uint_least32_t	*/
101#ifdef __arch64__
102#define	PRIoLEAST64	"lo"	/* uint_least64_t	*/
103#define	PRIoMAX		"lo"	/* uintmax_t		*/
104#else
105#define	PRIoLEAST64	"llo"	/* uint_least64_t	*/
106#define	PRIoMAX		"llo"	/* uintmax_t		*/
107#endif
108#define	PRIoPTR		"lo"	/* uintptr_t		*/
109
110#define	PRIu8		"u"	/* uint8_t		*/
111#define	PRIu16		"u"	/* uint16_t		*/
112#define	PRIu32		"u"	/* uint32_t		*/
113#ifdef __arch64__
114#define	PRIu64		"lu"	/* uint64_t		*/
115#else
116#define	PRIu64		"llu"	/* uint64_t		*/
117#endif
118#define	PRIuLEAST8	"u"	/* uint_least8_t	*/
119#define	PRIuLEAST16	"u"	/* uint_least16_t	*/
120#define	PRIuLEAST32	"u"	/* uint_least32_t	*/
121#ifdef __arch64__
122#define	PRIuLEAST64	"lu"	/* uint_least64_t	*/
123#define	PRIuMAX		"lu"	/* uintmax_t		*/
124#else
125#define	PRIuLEAST64	"llu"	/* uint_least64_t	*/
126#define	PRIuMAX		"llu"	/* uintmax_t		*/
127#endif
128#define	PRIuPTR		"lu"	/* uintptr_t		*/
129
130#define	PRIx8		"x"	/* uint8_t		*/
131#define	PRIx16		"x"	/* uint16_t		*/
132#define	PRIx32		"x"	/* uint32_t		*/
133#ifdef __arch64__
134#define	PRIx64		"lx"	/* uint64_t		*/
135#else
136#define	PRIx64		"llx"	/* uint64_t		*/
137#endif
138#define	PRIxLEAST8	"x"	/* uint_least8_t	*/
139#define	PRIxLEAST16	"x"	/* uint_least16_t	*/
140#define	PRIxLEAST32	"x"	/* uint_least32_t	*/
141#ifdef __arch64__
142#define	PRIxLEAST64	"lx"	/* uint_least64_t	*/
143#define	PRIxMAX		"lx"	/* uintmax_t		*/
144#else
145#define	PRIxLEAST64	"llx"	/* uint_least64_t	*/
146#define	PRIxMAX		"llx"	/* uintmax_t		*/
147#endif
148#define	PRIxPTR		"lx"	/* uintptr_t		*/
149
150#define	PRIX8		"X"	/* uint8_t		*/
151#define	PRIX16		"X"	/* uint16_t		*/
152#define	PRIX32		"X"	/* uint32_t		*/
153#ifdef __arch64__
154#define	PRIX64		"lX"	/* uint64_t		*/
155#else
156#define	PRIX64		"llX"	/* uint64_t		*/
157#endif
158#define	PRIXLEAST8	"X"	/* uint_least8_t	*/
159#define	PRIXLEAST16	"X"	/* uint_least16_t	*/
160#define	PRIXLEAST32	"X"	/* uint_least32_t	*/
161#ifdef __arch64__
162#define	PRIXLEAST64	"lX"	/* uint_least64_t	*/
163#define	PRIXMAX		"lX"	/* uintmax_t		*/
164#else
165#define	PRIXLEAST64	"llX"	/* uint_least64_t	*/
166#define	PRIXMAX		"llX"	/* uintmax_t		*/
167#endif
168#define	PRIXPTR		"lX"	/* uintptr_t		*/
169
170/* fscanf macros for signed integers */
171
172#define	SCNd8		"hhd"	/* int8_t		*/
173#define	SCNd16		"hd"	/* int16_t		*/
174#define	SCNd32		"d"	/* int32_t		*/
175#ifdef __arch64__
176#define	SCNd64		"ld"	/* int64_t		*/
177#else
178#define	SCNd64		"lld"	/* int64_t		*/
179#endif
180#define	SCNdLEAST8	"hhd"	/* int_least8_t		*/
181#define	SCNdLEAST16	"hd"	/* int_least16_t	*/
182#define	SCNdLEAST32	"d"	/* int_least32_t	*/
183#ifdef __arch64__
184#define	SCNdLEAST64	"ld"	/* int_least64_t	*/
185#define	SCNdMAX		"ld"	/* intmax_t		*/
186#else
187#define	SCNdLEAST64	"lld"	/* int_least64_t	*/
188#define	SCNdMAX		"lld"	/* intmax_t		*/
189#endif
190#define	SCNdPTR		"ld"	/* intptr_t		*/
191
192#define	SCNi8		"hhi"	/* int8_t		*/
193#define	SCNi16		"hi"	/* int16_t		*/
194#define	SCNi32		"i"	/* int32_t		*/
195#ifdef __arch64__
196#define	SCNi64		"li"	/* int64_t		*/
197#else
198#define	SCNi64		"lli"	/* int64_t		*/
199#endif
200#define	SCNiLEAST8	"hhi"	/* int_least8_t		*/
201#define	SCNiLEAST16	"hi"	/* int_least16_t	*/
202#define	SCNiLEAST32	"i"	/* int_least32_t	*/
203#ifdef __arch64__
204#define	SCNiLEAST64	"li"	/* int_least64_t	*/
205#define	SCNiMAX		"li"	/* intmax_t		*/
206#else
207#define	SCNiLEAST64	"lli"	/* int_least64_t	*/
208#define	SCNiMAX		"lli"	/* intmax_t		*/
209#endif
210#define	SCNiPTR		"li"	/* intptr_t		*/
211
212/* fscanf macros for unsigned integers */
213
214#define	SCNo8		"hho"	/* uint8_t		*/
215#define	SCNo16		"ho"	/* uint16_t		*/
216#define	SCNo32		"o"	/* uint32_t		*/
217#ifdef __arch64__
218#define	SCNo64		"lo"	/* uint64_t		*/
219#else
220#define	SCNo64		"llo"	/* uint64_t		*/
221#endif
222#define	SCNoLEAST8	"hho"	/* uint_least8_t	*/
223#define	SCNoLEAST16	"ho"	/* uint_least16_t	*/
224#define	SCNoLEAST32	"o"	/* uint_least32_t	*/
225#ifdef __arch64__
226#define	SCNoLEAST64	"lo"	/* uint_least64_t	*/
227#define	SCNoMAX		"lo"	/* uintmax_t		*/
228#else
229#define	SCNoLEAST64	"llo"	/* uint_least64_t	*/
230#define	SCNoMAX		"llo"	/* uintmax_t		*/
231#endif
232#define	SCNoPTR		"lo"	/* uintptr_t		*/
233
234#define	SCNu8		"hhu"	/* uint8_t		*/
235#define	SCNu16		"hu"	/* uint16_t		*/
236#define	SCNu32		"u"	/* uint32_t		*/
237#ifdef __arch64__
238#define	SCNu64		"lu"	/* uint64_t		*/
239#else
240#define	SCNu64		"llu"	/* uint64_t		*/
241#endif
242#define	SCNuLEAST8	"hhu"	/* uint_least8_t	*/
243#define	SCNuLEAST16	"hu"	/* uint_least16_t	*/
244#define	SCNuLEAST32	"u"	/* uint_least32_t	*/
245#ifdef __arch64__
246#define	SCNuLEAST64	"lu"	/* uint_least64_t	*/
247#define	SCNuMAX		"lu"	/* uintmax_t		*/
248#else
249#define	SCNuLEAST64	"llu"	/* uint_least64_t	*/
250#define	SCNuMAX		"llu"	/* uintmax_t		*/
251#endif
252#define	SCNuPTR		"lu"	/* uintptr_t		*/
253
254#define	SCNx8		"hhx"	/* uint8_t		*/
255#define	SCNx16		"hx"	/* uint16_t		*/
256#define	SCNx32		"x"	/* uint32_t		*/
257#ifdef __arch64__
258#define	SCNx64		"lx"	/* uint64_t		*/
259#else
260#define	SCNx64		"llx"	/* uint64_t		*/
261#endif
262#define	SCNxLEAST8	"hhx"	/* uint_least8_t	*/
263#define	SCNxLEAST16	"hx"	/* uint_least16_t	*/
264#define	SCNxLEAST32	"x"	/* uint_least32_t	*/
265#ifdef __arch64__
266#define	SCNxLEAST64	"lx"	/* uint_least64_t	*/
267#define	SCNxMAX		"lx"	/* uintmax_t		*/
268#else
269#define	SCNxLEAST64	"llx"	/* uint_least64_t	*/
270#define	SCNxMAX		"llx"	/* uintmax_t		*/
271#endif
272#define	SCNxPTR		"lx"	/* uintptr_t		*/
273
274#endif /* !_SPARC_INT_FMTIO_H_ */
275