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