_inttypes.h revision 330897
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
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 *	From: $NetBSD: int_fmtio.h,v 1.2 2001/04/26 16:25:21 kleink Exp $
32 * $FreeBSD: stable/11/sys/powerpc/include/_inttypes.h 330897 2018-03-14 03:19:51Z eadler $
33 */
34
35#ifndef _MACHINE_INTTYPES_H_
36#define	_MACHINE_INTTYPES_H_
37
38/*
39 * Macros for format specifiers.
40 */
41
42#ifdef __LP64__
43#define	__PRI64		"l"
44#define	__PRIptr	"l"
45#else
46#define	__PRI64		"ll"
47#define	__PRIptr
48#endif
49
50/* fprintf(3) macros for signed integers. */
51
52#define	PRId8		"d"		/* int8_t */
53#define	PRId16		"d"		/* int16_t */
54#define	PRId32		"d"		/* int32_t */
55#define	PRId64		__PRI64"d"	/* int64_t */
56#define	PRIdLEAST8	"d"		/* int_least8_t */
57#define	PRIdLEAST16	"d"		/* int_least16_t */
58#define	PRIdLEAST32	"d"		/* int_least32_t */
59#define	PRIdLEAST64	__PRI64"d"	/* int_least64_t */
60#define	PRIdFAST8	"d"		/* int_fast8_t */
61#define	PRIdFAST16	"d"		/* int_fast16_t */
62#define	PRIdFAST32	"d"		/* int_fast32_t */
63#define	PRIdFAST64	__PRI64"d"	/* int_fast64_t */
64#define	PRIdMAX		"jd"		/* intmax_t */
65#define	PRIdPTR		__PRIptr"d"	/* intptr_t */
66
67#define	PRIi8		"i"		/* int8_t */
68#define	PRIi16		"i"		/* int16_t */
69#define	PRIi32		"i"		/* int32_t */
70#define	PRIi64		__PRI64"i"	/* int64_t */
71#define	PRIiLEAST8	"i"		/* int_least8_t  */
72#define	PRIiLEAST16	"i"		/* int_least16_t */
73#define	PRIiLEAST32	"i"		/* int_least32_t */
74#define	PRIiLEAST64	__PRI64"i"	/* int_least64_t */
75#define	PRIiFAST8	"i"		/* int_fast8_t */
76#define	PRIiFAST16	"i"		/* int_fast16_t */
77#define	PRIiFAST32	"i"		/* int_fast32_t */
78#define	PRIiFAST64	__PRI64"i"	/* int_fast64_t */
79#define	PRIiMAX		"ji"		/* intmax_t */
80#define	PRIiPTR		__PRIptr"i"	/* intptr_t */
81
82/* fprintf(3) macros for unsigned integers. */
83
84#define	PRIo8		"o"		/* uint8_t */
85#define	PRIo16		"o"		/* uint16_t */
86#define	PRIo32		"o"		/* uint32_t */
87#define	PRIo64		__PRI64"o"	/* uint64_t */
88#define	PRIoLEAST8	"o"		/* uint_least8_t */
89#define	PRIoLEAST16	"o"		/* uint_least16_t */
90#define	PRIoLEAST32	"o"		/* uint_least32_t */
91#define	PRIoLEAST64	__PRI64"o"	/* uint_least64_t */
92#define	PRIoFAST8	"o"		/* uint_fast8_t */
93#define	PRIoFAST16	"o"		/* uint_fast16_t */
94#define	PRIoFAST32	"o"		/* uint_fast32_t */
95#define	PRIoFAST64	__PRI64"o"	/* uint_fast64_t */
96#define	PRIoMAX		"jo"		/* uintmax_t */
97#define	PRIoPTR		__PRIptr"o"	/* uintptr_t */
98
99#define	PRIu8		"u"		/* uint8_t */
100#define	PRIu16		"u"		/* uint16_t */
101#define	PRIu32		"u"		/* uint32_t */
102#define	PRIu64		__PRI64"u"	/* uint64_t */
103#define	PRIuLEAST8	"u"		/* uint_least8_t */
104#define	PRIuLEAST16	"u"		/* uint_least16_t */
105#define	PRIuLEAST32	"u"		/* uint_least32_t */
106#define	PRIuLEAST64	__PRI64"u"	/* uint_least64_t */
107#define	PRIuFAST8	"u"		/* uint_fast8_t */
108#define	PRIuFAST16	"u"		/* uint_fast16_t */
109#define	PRIuFAST32	"u"		/* uint_fast32_t */
110#define	PRIuFAST64	__PRI64"u"	/* uint_fast64_t */
111#define	PRIuMAX		"ju"		/* uintmax_t */
112#define	PRIuPTR		__PRIptr"u"	/* uintptr_t */
113
114#define	PRIx8		"x"		/* uint8_t */
115#define	PRIx16		"x"		/* uint16_t */
116#define	PRIx32		"x"		/* uint32_t */
117#define	PRIx64		__PRI64"x"	/* uint64_t */
118#define	PRIxLEAST8	"x"		/* uint_least8_t */
119#define	PRIxLEAST16	"x"		/* uint_least16_t */
120#define	PRIxLEAST32	"x"		/* uint_least32_t */
121#define	PRIxLEAST64	__PRI64"x"	/* uint_least64_t */
122#define	PRIxFAST8	"x"		/* uint_fast8_t */
123#define	PRIxFAST16	"x"		/* uint_fast16_t */
124#define	PRIxFAST32	"x"		/* uint_fast32_t */
125#define	PRIxFAST64	__PRI64"x"	/* uint_fast64_t */
126#define	PRIxMAX		"jx"		/* uintmax_t */
127#define	PRIxPTR		__PRIptr"x"	/* uintptr_t */
128
129#define	PRIX8		"X"		/* uint8_t */
130#define	PRIX16		"X"		/* uint16_t */
131#define	PRIX32		"X"		/* uint32_t */
132#define	PRIX64		__PRI64"X"	/* uint64_t */
133#define	PRIXLEAST8	"X"		/* uint_least8_t */
134#define	PRIXLEAST16	"X"		/* uint_least16_t */
135#define	PRIXLEAST32	"X"		/* uint_least32_t */
136#define	PRIXLEAST64	__PRI64"X"	/* uint_least64_t */
137#define	PRIXFAST8	"X"		/* uint_fast8_t */
138#define	PRIXFAST16	"X"		/* uint_fast16_t */
139#define	PRIXFAST32	"X"		/* uint_fast32_t */
140#define	PRIXFAST64	__PRI64"X"	/* uint_fast64_t */
141#define	PRIXMAX		"jX"		/* uintmax_t */
142#define	PRIXPTR		__PRIptr"X"	/* uintptr_t */
143
144/* fscanf(3) macros for signed integers. */
145
146#define	SCNd8		"hhd"		/* int8_t */
147#define	SCNd16		"hd"		/* int16_t */
148#define	SCNd32		"d"		/* int32_t */
149#define	SCNd64		__PRI64"d"	/* int64_t */
150#define	SCNdLEAST8	"hhd"		/* int_least8_t */
151#define	SCNdLEAST16	"hd"		/* int_least16_t */
152#define	SCNdLEAST32	"d"		/* int_least32_t */
153#define	SCNdLEAST64	__PRI64"d"	/* int_least64_t */
154#define	SCNdFAST8	"d"		/* int_fast8_t */
155#define	SCNdFAST16	"d"		/* int_fast16_t */
156#define	SCNdFAST32	"d"		/* int_fast32_t */
157#define	SCNdFAST64	__PRI64"d"	/* int_fast64_t */
158#define	SCNdMAX		"jd"		/* intmax_t */
159#define	SCNdPTR		__PRIptr"d"	/* intptr_t */
160
161#define	SCNi8		"hhi"		/* int8_t */
162#define	SCNi16		"hi"		/* int16_t */
163#define	SCNi32		"i"		/* int32_t */
164#define	SCNi64		__PRI64"i"	/* int64_t */
165#define	SCNiLEAST8	"hhi"		/* int_least8_t */
166#define	SCNiLEAST16	"hi"		/* int_least16_t */
167#define	SCNiLEAST32	"i"		/* int_least32_t */
168#define	SCNiLEAST64	__PRI64"i"	/* int_least64_t */
169#define	SCNiFAST8	"i"		/* int_fast8_t */
170#define	SCNiFAST16	"i"		/* int_fast16_t */
171#define	SCNiFAST32	"i"		/* int_fast32_t */
172#define	SCNiFAST64	__PRI64"i"	/* int_fast64_t */
173#define	SCNiMAX		"ji"		/* intmax_t */
174#define	SCNiPTR		__PRIptr"i"	/* intptr_t */
175
176/* fscanf(3) macros for unsigned integers. */
177
178#define	SCNo8		"hho"		/* uint8_t */
179#define	SCNo16		"ho"		/* uint16_t */
180#define	SCNo32		"o"		/* uint32_t */
181#define	SCNo64		__PRI64"o"	/* uint64_t */
182#define	SCNoLEAST8	"hho"		/* uint_least8_t */
183#define	SCNoLEAST16	"ho"		/* uint_least16_t */
184#define	SCNoLEAST32	"o"		/* uint_least32_t */
185#define	SCNoLEAST64	__PRI64"o"	/* uint_least64_t */
186#define	SCNoFAST8	"o"		/* uint_fast8_t */
187#define	SCNoFAST16	"o"		/* uint_fast16_t */
188#define	SCNoFAST32	"o"		/* uint_fast32_t */
189#define	SCNoFAST64	__PRI64"o"	/* uint_fast64_t */
190#define	SCNoMAX		"jo"		/* uintmax_t */
191#define	SCNoPTR		__PRIptr"o"	/* uintptr_t */
192
193#define	SCNu8		"hhu"		/* uint8_t */
194#define	SCNu16		"hu"		/* uint16_t */
195#define	SCNu32		"u"		/* uint32_t */
196#define	SCNu64		__PRI64"u"	/* uint64_t */
197#define	SCNuLEAST8	"hhu"		/* uint_least8_t */
198#define	SCNuLEAST16	"hu"		/* uint_least16_t */
199#define	SCNuLEAST32	"u"		/* uint_least32_t */
200#define	SCNuLEAST64	__PRI64"u"	/* uint_least64_t */
201#define	SCNuFAST8	"u"		/* uint_fast8_t */
202#define	SCNuFAST16	"u"		/* uint_fast16_t */
203#define	SCNuFAST32	"u"		/* uint_fast32_t */
204#define	SCNuFAST64	__PRI64"u"	/* uint_fast64_t */
205#define	SCNuMAX		"ju"		/* uintmax_t */
206#define	SCNuPTR		__PRIptr"u"	/* uintptr_t */
207
208#define	SCNx8		"hhx"		/* uint8_t */
209#define	SCNx16		"hx"		/* uint16_t */
210#define	SCNx32		"x"		/* uint32_t */
211#define	SCNx64		__PRI64"x"	/* uint64_t */
212#define	SCNxLEAST8	"hhx"		/* uint_least8_t */
213#define	SCNxLEAST16	"hx"		/* uint_least16_t */
214#define	SCNxLEAST32	"x"		/* uint_least32_t */
215#define	SCNxLEAST64	__PRI64"x"	/* uint_least64_t */
216#define	SCNxFAST8	"x"		/* uint_fast8_t */
217#define	SCNxFAST16	"x"		/* uint_fast16_t */
218#define	SCNxFAST32	"x"		/* uint_fast32_t */
219#define	SCNxFAST64	__PRI64"x"	/* uint_fast64_t */
220#define	SCNxMAX		"jx"		/* uintmax_t */
221#define	SCNxPTR		__PRIptr"x"	/* uintptr_t */
222
223#endif /* !_MACHINE_INTTYPES_H_ */
224