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