xref: /freebsd/sys/riscv/include/_inttypes.h (revision 2ff63af9)
1 /*-
2  * Copyright (c) 2001 The NetBSD Foundation, Inc.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to The NetBSD Foundation
6  * by Klaus Klein.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  *
29  *	From: $NetBSD: int_fmtio.h,v 1.4 2008/04/28 20:23:36 martin Exp $
30  */
31 
32 #ifndef _MACHINE__INTTYPES_H_
33 #define	_MACHINE__INTTYPES_H_
34 
35 /*
36  * Macros for format specifiers.
37  */
38 
39 /* fprintf(3) macros for signed integers. */
40 
41 #define	PRId8		"d"	/* int8_t */
42 #define	PRId16		"d"	/* int16_t */
43 #define	PRId32		"d"	/* int32_t */
44 #define	PRId64		"ld"	/* int64_t */
45 #define	PRIdLEAST8	"d"	/* int_least8_t */
46 #define	PRIdLEAST16	"d"	/* int_least16_t */
47 #define	PRIdLEAST32	"d"	/* int_least32_t */
48 #define	PRIdLEAST64	"ld"	/* int_least64_t */
49 #define	PRIdFAST8	"d"	/* int_fast8_t */
50 #define	PRIdFAST16	"d"	/* int_fast16_t */
51 #define	PRIdFAST32	"d"	/* int_fast32_t */
52 #define	PRIdFAST64	"ld"	/* int_fast64_t */
53 #define	PRIdMAX		"jd"	/* intmax_t */
54 #define	PRIdPTR		"ld"	/* intptr_t */
55 
56 #define	PRIi8		"i"	/* int8_t */
57 #define	PRIi16		"i"	/* int16_t */
58 #define	PRIi32		"i"	/* int32_t */
59 #define	PRIi64		"li"	/* int64_t */
60 #define	PRIiLEAST8	"i"	/* int_least8_t  */
61 #define	PRIiLEAST16	"i"	/* int_least16_t */
62 #define	PRIiLEAST32	"i"	/* int_least32_t */
63 #define	PRIiLEAST64	"li"	/* int_least64_t */
64 #define	PRIiFAST8	"i"	/* int_fast8_t */
65 #define	PRIiFAST16	"i"	/* int_fast16_t */
66 #define	PRIiFAST32	"i"	/* int_fast32_t */
67 #define	PRIiFAST64	"li"	/* int_fast64_t */
68 #define	PRIiMAX		"ji"	/* intmax_t */
69 #define	PRIiPTR		"li"	/* intptr_t */
70 
71 /* fprintf(3) macros for unsigned integers. */
72 
73 #define	PRIo8		"o"	/* uint8_t */
74 #define	PRIo16		"o"	/* uint16_t */
75 #define	PRIo32		"o"	/* uint32_t */
76 #define	PRIo64		"lo"	/* uint64_t */
77 #define	PRIoLEAST8	"o"	/* uint_least8_t */
78 #define	PRIoLEAST16	"o"	/* uint_least16_t */
79 #define	PRIoLEAST32	"o"	/* uint_least32_t */
80 #define	PRIoLEAST64	"lo"	/* uint_least64_t */
81 #define	PRIoFAST8	"o"	/* uint_fast8_t */
82 #define	PRIoFAST16	"o"	/* uint_fast16_t */
83 #define	PRIoFAST32	"o"	/* uint_fast32_t */
84 #define	PRIoFAST64	"lo"	/* uint_fast64_t */
85 #define	PRIoMAX		"jo"	/* uintmax_t */
86 #define	PRIoPTR		"lo"	/* uintptr_t */
87 
88 #define	PRIu8		"u"	/* uint8_t */
89 #define	PRIu16		"u"	/* uint16_t */
90 #define	PRIu32		"u"	/* uint32_t */
91 #define	PRIu64		"lu"	/* uint64_t */
92 #define	PRIuLEAST8	"u"	/* uint_least8_t */
93 #define	PRIuLEAST16	"u"	/* uint_least16_t */
94 #define	PRIuLEAST32	"u"	/* uint_least32_t */
95 #define	PRIuLEAST64	"lu"	/* uint_least64_t */
96 #define	PRIuFAST8	"u"	/* uint_fast8_t */
97 #define	PRIuFAST16	"u"	/* uint_fast16_t */
98 #define	PRIuFAST32	"u"	/* uint_fast32_t */
99 #define	PRIuFAST64	"lu"	/* uint_fast64_t */
100 #define	PRIuMAX		"ju"	/* uintmax_t */
101 #define	PRIuPTR		"lu"	/* uintptr_t */
102 
103 #define	PRIx8		"x"	/* uint8_t */
104 #define	PRIx16		"x"	/* uint16_t */
105 #define	PRIx32		"x"	/* uint32_t */
106 #define	PRIx64		"lx"	/* uint64_t */
107 #define	PRIxLEAST8	"x"	/* uint_least8_t */
108 #define	PRIxLEAST16	"x"	/* uint_least16_t */
109 #define	PRIxLEAST32	"x"	/* uint_least32_t */
110 #define	PRIxLEAST64	"lx"	/* uint_least64_t */
111 #define	PRIxFAST8	"x"	/* uint_fast8_t */
112 #define	PRIxFAST16	"x"	/* uint_fast16_t */
113 #define	PRIxFAST32	"x"	/* uint_fast32_t */
114 #define	PRIxFAST64	"lx"	/* uint_fast64_t */
115 #define	PRIxMAX		"jx"	/* uintmax_t */
116 #define	PRIxPTR		"lx"	/* uintptr_t */
117 
118 #define	PRIX8		"X"	/* uint8_t */
119 #define	PRIX16		"X"	/* uint16_t */
120 #define	PRIX32		"X"	/* uint32_t */
121 #define	PRIX64		"lX"	/* uint64_t */
122 #define	PRIXLEAST8	"X"	/* uint_least8_t */
123 #define	PRIXLEAST16	"X"	/* uint_least16_t */
124 #define	PRIXLEAST32	"X"	/* uint_least32_t */
125 #define	PRIXLEAST64	"lX"	/* uint_least64_t */
126 #define	PRIXFAST8	"X"	/* uint_fast8_t */
127 #define	PRIXFAST16	"X"	/* uint_fast16_t */
128 #define	PRIXFAST32	"X"	/* uint_fast32_t */
129 #define	PRIXFAST64	"lX"	/* uint_fast64_t */
130 #define	PRIXMAX		"jX"	/* uintmax_t */
131 #define	PRIXPTR		"lX"	/* uintptr_t */
132 
133 /* fscanf(3) macros for signed integers. */
134 
135 #define	SCNd8		"hhd"	/* int8_t */
136 #define	SCNd16		"hd"	/* int16_t */
137 #define	SCNd32		"d"	/* int32_t */
138 #define	SCNd64		"ld"	/* int64_t */
139 #define	SCNdLEAST8	"hhd"	/* int_least8_t */
140 #define	SCNdLEAST16	"hd"	/* int_least16_t */
141 #define	SCNdLEAST32	"d"	/* int_least32_t */
142 #define	SCNdLEAST64	"ld"	/* int_least64_t */
143 #define	SCNdFAST8	"d"	/* int_fast8_t */
144 #define	SCNdFAST16	"d"	/* int_fast16_t */
145 #define	SCNdFAST32	"d"	/* int_fast32_t */
146 #define	SCNdFAST64	"ld"	/* int_fast64_t */
147 #define	SCNdMAX		"jd"	/* intmax_t */
148 #define	SCNdPTR		"ld"	/* intptr_t */
149 
150 #define	SCNi8		"hhi"	/* int8_t */
151 #define	SCNi16		"hi"	/* int16_t */
152 #define	SCNi32		"i"	/* int32_t */
153 #define	SCNi64		"li"	/* int64_t */
154 #define	SCNiLEAST8	"hhi"	/* int_least8_t */
155 #define	SCNiLEAST16	"hi"	/* int_least16_t */
156 #define	SCNiLEAST32	"i"	/* int_least32_t */
157 #define	SCNiLEAST64	"li"	/* int_least64_t */
158 #define	SCNiFAST8	"i"	/* int_fast8_t */
159 #define	SCNiFAST16	"i"	/* int_fast16_t */
160 #define	SCNiFAST32	"i"	/* int_fast32_t */
161 #define	SCNiFAST64	"li"	/* int_fast64_t */
162 #define	SCNiMAX		"ji"	/* intmax_t */
163 #define	SCNiPTR		"li"	/* intptr_t */
164 
165 /* fscanf(3) macros for unsigned integers. */
166 
167 #define	SCNo8		"hho"	/* uint8_t */
168 #define	SCNo16		"ho"	/* uint16_t */
169 #define	SCNo32		"o"	/* uint32_t */
170 #define	SCNo64		"lo"	/* uint64_t */
171 #define	SCNoLEAST8	"hho"	/* uint_least8_t */
172 #define	SCNoLEAST16	"ho"	/* uint_least16_t */
173 #define	SCNoLEAST32	"o"	/* uint_least32_t */
174 #define	SCNoLEAST64	"lo"	/* uint_least64_t */
175 #define	SCNoFAST8	"o"	/* uint_fast8_t */
176 #define	SCNoFAST16	"o"	/* uint_fast16_t */
177 #define	SCNoFAST32	"o"	/* uint_fast32_t */
178 #define	SCNoFAST64	"lo"	/* uint_fast64_t */
179 #define	SCNoMAX		"jo"	/* uintmax_t */
180 #define	SCNoPTR		"lo"	/* uintptr_t */
181 
182 #define	SCNu8		"hhu"	/* uint8_t */
183 #define	SCNu16		"hu"	/* uint16_t */
184 #define	SCNu32		"u"	/* uint32_t */
185 #define	SCNu64		"lu"	/* uint64_t */
186 #define	SCNuLEAST8	"hhu"	/* uint_least8_t */
187 #define	SCNuLEAST16	"hu"	/* uint_least16_t */
188 #define	SCNuLEAST32	"u"	/* uint_least32_t */
189 #define	SCNuLEAST64	"lu"	/* uint_least64_t */
190 #define	SCNuFAST8	"u"	/* uint_fast8_t */
191 #define	SCNuFAST16	"u"	/* uint_fast16_t */
192 #define	SCNuFAST32	"u"	/* uint_fast32_t */
193 #define	SCNuFAST64	"lu"	/* uint_fast64_t */
194 #define	SCNuMAX		"ju"	/* uintmax_t */
195 #define	SCNuPTR		"lu"	/* uintptr_t */
196 
197 #define	SCNx8		"hhx"	/* uint8_t */
198 #define	SCNx16		"hx"	/* uint16_t */
199 #define	SCNx32		"x"	/* uint32_t */
200 #define	SCNx64		"lx"	/* uint64_t */
201 #define	SCNxLEAST8	"hhx"	/* uint_least8_t */
202 #define	SCNxLEAST16	"hx"	/* uint_least16_t */
203 #define	SCNxLEAST32	"x"	/* uint_least32_t */
204 #define	SCNxLEAST64	"lx"	/* uint_least64_t */
205 #define	SCNxFAST8	"x"	/* uint_fast8_t */
206 #define	SCNxFAST16	"x"	/* uint_fast16_t */
207 #define	SCNxFAST32	"x"	/* uint_fast32_t */
208 #define	SCNxFAST64	"lx"	/* uint_fast64_t */
209 #define	SCNxMAX		"jx"	/* uintmax_t */
210 #define	SCNxPTR		"lx"	/* uintptr_t */
211 
212 #endif /* !_MACHINE__INTTYPES_H_ */
213