int_fmtio.h revision 1.4
1/*	$NetBSD: int_fmtio.h,v 1.4 2008/04/28 20:23:36 martin 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 _SPARC_INT_FMTIO_H_
33#define _SPARC_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 __arch64__
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 __arch64__
53#define	PRIdLEAST64	"ld"	/* int_least64_t	*/
54#else
55#define	PRIdLEAST64	"lld"	/* int_least64_t	*/
56#endif
57#ifdef __arch64__
58#define	PRIdFAST8	"ld"	/* int_fast8_t		*/
59#define	PRIdFAST16	"ld"	/* int_fast16_t		*/
60#define	PRIdFAST32	"ld"	/* int_fast32_t		*/
61#define	PRIdFAST64	"ld"	/* int_fast64_t		*/
62#else
63#define	PRIdFAST8	"d"	/* int_fast8_t		*/
64#define	PRIdFAST16	"d"	/* int_fast16_t		*/
65#define	PRIdFAST32	"d"	/* int_fast32_t		*/
66#define	PRIdFAST64	"lld"	/* int_fast64_t		*/
67#endif
68#ifdef __arch64__
69#define	PRIdMAX		"ld"	/* intmax_t		*/
70#else
71#define	PRIdMAX		"lld"	/* intmax_t		*/
72#endif
73#define	PRIdPTR		"ld"	/* intptr_t		*/
74
75#define	PRIi8		"i"	/* int8_t		*/
76#define	PRIi16		"i"	/* int16_t		*/
77#define	PRIi32		"i"	/* int32_t		*/
78#ifdef __arch64__
79#define	PRIi64		"li"	/* int64_t		*/
80#else
81#define	PRIi64		"lli"	/* int64_t		*/
82#endif
83#define	PRIiLEAST8	"i"	/* int_least8_t		*/
84#define	PRIiLEAST16	"i"	/* int_least16_t	*/
85#define	PRIiLEAST32	"i"	/* int_least32_t	*/
86#ifdef __arch64__
87#define	PRIiLEAST64	"li"	/* int_least64_t	*/
88#else
89#define	PRIiLEAST64	"lli"	/* int_least64_t	*/
90#endif
91#ifdef __arch64__
92#define	PRIiFAST8	"li"	/* int_fast8_t		*/
93#define	PRIiFAST16	"li"	/* int_fast16_t		*/
94#define	PRIiFAST32	"li"	/* int_fast32_t		*/
95#define	PRIiFAST64	"li"	/* int_fast64_t		*/
96#else
97#define	PRIiFAST8	"i"	/* int_fast8_t		*/
98#define	PRIiFAST16	"i"	/* int_fast16_t		*/
99#define	PRIiFAST32	"i"	/* int_fast32_t		*/
100#define	PRIiFAST64	"lli"	/* int_fast64_t		*/
101#endif
102#ifdef __arch64__
103#define	PRIiMAX		"li"	/* intmax_t		*/
104#else
105#define	PRIiMAX		"lli"	/* intmax_t		*/
106#endif
107#define	PRIiPTR		"li"	/* intptr_t		*/
108
109/* fprintf macros for unsigned integers */
110
111#define	PRIo8		"o"	/* uint8_t		*/
112#define	PRIo16		"o"	/* uint16_t		*/
113#define	PRIo32		"o"	/* uint32_t		*/
114#ifdef __arch64__
115#define	PRIo64		"lo"	/* uint64_t		*/
116#else
117#define	PRIo64		"llo"	/* uint64_t		*/
118#endif
119#define	PRIoLEAST8	"o"	/* uint_least8_t	*/
120#define	PRIoLEAST16	"o"	/* uint_least16_t	*/
121#define	PRIoLEAST32	"o"	/* uint_least32_t	*/
122#ifdef __arch64__
123#define	PRIoLEAST64	"lo"	/* uint_least64_t	*/
124#else
125#define	PRIoLEAST64	"llo"	/* uint_least64_t	*/
126#endif
127#define	PRIoFAST8	"o"	/* uint_fast8_t		*/
128#define	PRIoFAST16	"o"	/* uint_fast16_t	*/
129#define	PRIoFAST32	"o"	/* uint_fast32_t	*/
130#ifdef __arch64__
131#define	PRIoFAST64	"lo"	/* uint_fast64_t	*/
132#else
133#define	PRIoFAST64	"llo"	/* uint_fast64_t	*/
134#endif
135#ifdef __arch64__
136#define	PRIoMAX		"lo"	/* uintmax_t		*/
137#else
138#define	PRIoMAX		"llo"	/* uintmax_t		*/
139#endif
140#define	PRIoPTR		"lo"	/* uintptr_t		*/
141
142#define	PRIu8		"u"	/* uint8_t		*/
143#define	PRIu16		"u"	/* uint16_t		*/
144#define	PRIu32		"u"	/* uint32_t		*/
145#ifdef __arch64__
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 __arch64__
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 __arch64__
162#define	PRIuFAST64	"lu"	/* uint_fast64_t	*/
163#else
164#define	PRIuFAST64	"llu"	/* uint_fast64_t	*/
165#endif
166#ifdef __arch64__
167#define	PRIuMAX		"lu"	/* uintmax_t		*/
168#else
169#define	PRIuMAX		"llu"	/* uintmax_t		*/
170#endif
171#define	PRIuPTR		"lu"	/* uintptr_t		*/
172
173#define	PRIx8		"x"	/* uint8_t		*/
174#define	PRIx16		"x"	/* uint16_t		*/
175#define	PRIx32		"x"	/* uint32_t		*/
176#ifdef __arch64__
177#define	PRIx64		"lx"	/* uint64_t		*/
178#else
179#define	PRIx64		"llx"	/* uint64_t		*/
180#endif
181#define	PRIxLEAST8	"x"	/* uint_least8_t	*/
182#define	PRIxLEAST16	"x"	/* uint_least16_t	*/
183#define	PRIxLEAST32	"x"	/* uint_least32_t	*/
184#ifdef __arch64__
185#define	PRIxLEAST64	"lx"	/* uint_least64_t	*/
186#else
187#define	PRIxLEAST64	"llx"	/* uint_least64_t	*/
188#endif
189#define	PRIxFAST8	"x"	/* uint_fast8_t		*/
190#define	PRIxFAST16	"x"	/* uint_fast16_t	*/
191#define	PRIxFAST32	"x"	/* uint_fast32_t	*/
192#ifdef __arch64__
193#define	PRIxFAST64	"lx"	/* uint_fast64_t	*/
194#else
195#define	PRIxFAST64	"llx"	/* uint_fast64_t	*/
196#endif
197#ifdef __arch64__
198#define	PRIxMAX		"lx"	/* uintmax_t		*/
199#else
200#define	PRIxMAX		"llx"	/* uintmax_t		*/
201#endif
202#define	PRIxPTR		"lx"	/* uintptr_t		*/
203
204#define	PRIX8		"X"	/* uint8_t		*/
205#define	PRIX16		"X"	/* uint16_t		*/
206#define	PRIX32		"X"	/* uint32_t		*/
207#ifdef __arch64__
208#define	PRIX64		"lX"	/* uint64_t		*/
209#else
210#define	PRIX64		"llX"	/* uint64_t		*/
211#endif
212#define	PRIXLEAST8	"X"	/* uint_least8_t	*/
213#define	PRIXLEAST16	"X"	/* uint_least16_t	*/
214#define	PRIXLEAST32	"X"	/* uint_least32_t	*/
215#ifdef __arch64__
216#define	PRIXLEAST64	"lX"	/* uint_least64_t	*/
217#else
218#define	PRIXLEAST64	"llX"	/* uint_least64_t	*/
219#endif
220#define	PRIXFAST8	"X"	/* uint_fast8_t		*/
221#define	PRIXFAST16	"X"	/* uint_fast16_t	*/
222#define	PRIXFAST32	"X"	/* uint_fast32_t	*/
223#ifdef __arch64__
224#define	PRIXFAST64	"lX"	/* uint_fast64_t	*/
225#else
226#define	PRIXFAST64	"llX"	/* uint_fast64_t	*/
227#endif
228#ifdef __arch64__
229#define	PRIXMAX		"lX"	/* uintmax_t		*/
230#else
231#define	PRIXMAX		"llX"	/* uintmax_t		*/
232#endif
233#define	PRIXPTR		"lX"	/* uintptr_t		*/
234
235/* fscanf macros for signed integers */
236
237#define	SCNd8		"hhd"	/* int8_t		*/
238#define	SCNd16		"hd"	/* int16_t		*/
239#define	SCNd32		"d"	/* int32_t		*/
240#ifdef __arch64__
241#define	SCNd64		"ld"	/* int64_t		*/
242#else
243#define	SCNd64		"lld"	/* int64_t		*/
244#endif
245#define	SCNdLEAST8	"hhd"	/* int_least8_t		*/
246#define	SCNdLEAST16	"hd"	/* int_least16_t	*/
247#define	SCNdLEAST32	"d"	/* int_least32_t	*/
248#ifdef __arch64__
249#define	SCNdLEAST64	"ld"	/* int_least64_t	*/
250#else
251#define	SCNdLEAST64	"lld"	/* int_least64_t	*/
252#endif
253#ifdef __arch64__
254#define	SCNdFAST8	"ld"	/* int_fast8_t		*/
255#define	SCNdFAST16	"ld"	/* int_fast16_t		*/
256#define	SCNdFAST32	"ld"	/* int_fast32_t		*/
257#define	SCNdFAST64	"ld"	/* int_fast64_t		*/
258#else
259#define	SCNdFAST8	"d"	/* int_fast8_t		*/
260#define	SCNdFAST16	"d"	/* int_fast16_t		*/
261#define	SCNdFAST32	"d"	/* int_fast32_t		*/
262#define	SCNdFAST64	"lld"	/* int_fast64_t		*/
263#endif
264#ifdef __arch64__
265#define	SCNdMAX		"ld"	/* intmax_t		*/
266#else
267#define	SCNdMAX		"lld"	/* intmax_t		*/
268#endif
269#define	SCNdPTR		"ld"	/* intptr_t		*/
270
271#define	SCNi8		"hhi"	/* int8_t		*/
272#define	SCNi16		"hi"	/* int16_t		*/
273#define	SCNi32		"i"	/* int32_t		*/
274#ifdef __arch64__
275#define	SCNi64		"li"	/* int64_t		*/
276#else
277#define	SCNi64		"lli"	/* int64_t		*/
278#endif
279#define	SCNiLEAST8	"hhi"	/* int_least8_t		*/
280#define	SCNiLEAST16	"hi"	/* int_least16_t	*/
281#define	SCNiLEAST32	"i"	/* int_least32_t	*/
282#ifdef __arch64__
283#define	SCNiLEAST64	"li"	/* int_least64_t	*/
284#else
285#define	SCNiLEAST64	"lli"	/* int_least64_t	*/
286#endif
287#ifdef __arch64__
288#define	SCNiFAST8	"li"	/* int_fast8_t		*/
289#define	SCNiFAST16	"li"	/* int_fast16_t		*/
290#define	SCNiFAST32	"li"	/* int_fast32_t		*/
291#define	SCNiFAST64	"li"	/* int_fast64_t		*/
292#else
293#define	SCNiFAST8	"i"	/* int_fast8_t		*/
294#define	SCNiFAST16	"i"	/* int_fast16_t		*/
295#define	SCNiFAST32	"i"	/* int_fast32_t		*/
296#define	SCNiFAST64	"lli"	/* int_fast64_t		*/
297#endif
298#ifdef __arch64__
299#define	SCNiMAX		"li"	/* intmax_t		*/
300#else
301#define	SCNiMAX		"lli"	/* intmax_t		*/
302#endif
303#define	SCNiPTR		"li"	/* intptr_t		*/
304
305/* fscanf macros for unsigned integers */
306
307#define	SCNo8		"hho"	/* uint8_t		*/
308#define	SCNo16		"ho"	/* uint16_t		*/
309#define	SCNo32		"o"	/* uint32_t		*/
310#ifdef __arch64__
311#define	SCNo64		"lo"	/* uint64_t		*/
312#else
313#define	SCNo64		"llo"	/* uint64_t		*/
314#endif
315#define	SCNoLEAST8	"hho"	/* uint_least8_t	*/
316#define	SCNoLEAST16	"ho"	/* uint_least16_t	*/
317#define	SCNoLEAST32	"o"	/* uint_least32_t	*/
318#ifdef __arch64__
319#define	SCNoLEAST64	"lo"	/* uint_least64_t	*/
320#else
321#define	SCNoLEAST64	"llo"	/* uint_least64_t	*/
322#endif
323#ifdef __arch64__
324#define	SCNoFAST8	"hho"	/* uint_fast8_t		*/
325#define	SCNoFAST16	"ho"	/* uint_fast16_t	*/
326#define	SCNoFAST32	"o"	/* uint_fast32_t	*/
327#define	SCNoFAST64	"lo"	/* uint_fast64_t	*/
328#else
329#define	SCNoFAST8	"o"	/* uint_fast8_t		*/
330#define	SCNoFAST16	"o"	/* uint_fast16_t	*/
331#define	SCNoFAST32	"o"	/* uint_fast32_t	*/
332#define	SCNoFAST64	"llo"	/* uint_fast64_t	*/
333#endif
334#ifdef __arch64__
335#define	SCNoMAX		"lo"	/* uintmax_t		*/
336#else
337#define	SCNoMAX		"llo"	/* uintmax_t		*/
338#endif
339#define	SCNoPTR		"lo"	/* uintptr_t		*/
340
341#define	SCNu8		"hhu"	/* uint8_t		*/
342#define	SCNu16		"hu"	/* uint16_t		*/
343#define	SCNu32		"u"	/* uint32_t		*/
344#ifdef __arch64__
345#define	SCNu64		"lu"	/* uint64_t		*/
346#else
347#define	SCNu64		"llu"	/* uint64_t		*/
348#endif
349#define	SCNuLEAST8	"hhu"	/* uint_least8_t	*/
350#define	SCNuLEAST16	"hu"	/* uint_least16_t	*/
351#define	SCNuLEAST32	"u"	/* uint_least32_t	*/
352#ifdef __arch64__
353#define	SCNuLEAST64	"lu"	/* uint_least64_t	*/
354#else
355#define	SCNuLEAST64	"llu"	/* uint_least64_t	*/
356#endif
357#ifdef __arch64__
358#define	SCNuFAST8	"hhu"	/* uint_fast8_t		*/
359#define	SCNuFAST16	"hu"	/* uint_fast16_t	*/
360#define	SCNuFAST32	"u"	/* uint_fast32_t	*/
361#define	SCNuFAST64	"lu"	/* uint_fast64_t	*/
362#else
363#define	SCNuFAST8	"u"	/* uint_fast8_t		*/
364#define	SCNuFAST16	"u"	/* uint_fast16_t	*/
365#define	SCNuFAST32	"u"	/* uint_fast32_t	*/
366#define	SCNuFAST64	"llu"	/* uint_fast64_t	*/
367#endif
368#ifdef __arch64__
369#define	SCNuMAX		"lu"	/* uintmax_t		*/
370#else
371#define	SCNuMAX		"llu"	/* uintmax_t		*/
372#endif
373#define	SCNuPTR		"lu"	/* uintptr_t		*/
374
375#define	SCNx8		"hhx"	/* uint8_t		*/
376#define	SCNx16		"hx"	/* uint16_t		*/
377#define	SCNx32		"x"	/* uint32_t		*/
378#ifdef __arch64__
379#define	SCNx64		"lx"	/* uint64_t		*/
380#else
381#define	SCNx64		"llx"	/* uint64_t		*/
382#endif
383#define	SCNxLEAST8	"hhx"	/* uint_least8_t	*/
384#define	SCNxLEAST16	"hx"	/* uint_least16_t	*/
385#define	SCNxLEAST32	"x"	/* uint_least32_t	*/
386#ifdef __arch64__
387#define	SCNxLEAST64	"lx"	/* uint_least64_t	*/
388#else
389#define	SCNxLEAST64	"llx"	/* uint_least64_t	*/
390#endif
391#ifdef __arch64__
392#define	SCNxFAST8	"hhx"	/* uint_fast8_t		*/
393#define	SCNxFAST16	"hx"	/* uint_fast16_t	*/
394#define	SCNxFAST32	"x"	/* uint_fast32_t	*/
395#define	SCNxFAST64	"lx"	/* uint_fast64_t	*/
396#else
397#define	SCNxFAST8	"x"	/* uint_fast8_t		*/
398#define	SCNxFAST16	"x"	/* uint_fast16_t	*/
399#define	SCNxFAST32	"x"	/* uint_fast32_t	*/
400#define	SCNxFAST64	"llx"	/* uint_fast64_t	*/
401#endif
402#ifdef __arch64__
403#define	SCNxMAX		"lx"	/* uintmax_t		*/
404#else
405#define	SCNxMAX		"llx"	/* uintmax_t		*/
406#endif
407#define	SCNxPTR		"lx"	/* uintptr_t		*/
408
409#endif /* !_SPARC_INT_FMTIO_H_ */
410