_inttypes.h revision 99117
150476Speter/*-
220388Sadam * Copyright (c) 2001 The NetBSD Foundation, Inc.
320388Sadam * All rights reserved.
420388Sadam *
520388Sadam * This code is derived from software contributed to The NetBSD Foundation
620388Sadam * by Klaus Klein.
720388Sadam *
820388Sadam * Redistribution and use in source and binary forms, with or without
920388Sadam * modification, are permitted provided that the following conditions
1020388Sadam * are met:
1120388Sadam * 1. Redistributions of source code must retain the above copyright
1220388Sadam *    notice, this list of conditions and the following disclaimer.
1320388Sadam * 2. Redistributions in binary form must reproduce the above copyright
1420388Sadam *    notice, this list of conditions and the following disclaimer in the
1520388Sadam *    documentation and/or other materials provided with the distribution.
1620388Sadam * 3. All advertising materials mentioning features or use of this software
1720388Sadam *    must display the following acknowledgement:
1820388Sadam *        This product includes software developed by the NetBSD
1920388Sadam *        Foundation, Inc. and its contributors.
2020388Sadam * 4. Neither the name of The NetBSD Foundation nor the names of its
2120388Sadam *    contributors may be used to endorse or promote products derived
2220388Sadam *    from this software without specific prior written permission.
2320388Sadam *
2420388Sadam * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2520388Sadam * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2620388Sadam * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2720388Sadam * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2820388Sadam * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2920388Sadam * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3020388Sadam * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3120388Sadam * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3220388Sadam * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3320388Sadam * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3420388Sadam * POSSIBILITY OF SUCH DAMAGE.
3520388Sadam *
3620388Sadam *	From: $NetBSD: int_fmtio.h,v 1.2 2001/04/26 16:25:21 kleink Exp $
3720388Sadam * $FreeBSD: head/sys/i386/include/_inttypes.h 99117 2002-06-30 05:48:03Z mike $
3820388Sadam */
3920388Sadam
4020388Sadam#ifndef _MACHINE_INTTYPES_H_
4120388Sadam#define _MACHINE_INTTYPES_H_
4220388Sadam
4320388Sadam/*
4420388Sadam * Macros for format specifiers.
4520388Sadam */
4620388Sadam
4720388Sadam/* fprintf(3) macros for signed integers. */
4820388Sadam
4920388Sadam#define	PRId8		"d"	/* int8_t */
5020388Sadam#define	PRId16		"d"	/* int16_t */
5120388Sadam#define	PRId32		"d"	/* int32_t */
5220388Sadam#define	PRId64		"lld"	/* int64_t */
5320388Sadam#define	PRIdLEAST8	"d"	/* int_least8_t */
5420388Sadam#define	PRIdLEAST16	"d"	/* int_least16_t */
5520388Sadam#define	PRIdLEAST32	"d"	/* int_least32_t */
5620388Sadam#define	PRIdLEAST64	"lld"	/* int_least64_t */
5720388Sadam#define	PRIdFAST8	"d"	/* int_fast8_t */
5820388Sadam#define	PRIdFAST16	"d"	/* int_fast16_t */
5920388Sadam#define	PRIdFAST32	"d"	/* int_fast32_t */
6020388Sadam#define	PRIdFAST64	"lld"	/* int_fast64_t */
6120388Sadam#define	PRIdMAX		"jd"	/* intmax_t */
6220388Sadam#define	PRIdPTR		"d"	/* intptr_t */
6320388Sadam
6420388Sadam#define	PRIi8		"i"	/* int8_t */
6520388Sadam#define	PRIi16		"i"	/* int16_t */
6653943Sache#define	PRIi32		"i"	/* int32_t */
6720388Sadam#define	PRIi64		"lli"	/* int64_t */
6820388Sadam#define	PRIiLEAST8	"i"	/* int_least8_t  */
6920388Sadam#define	PRIiLEAST16	"i"	/* int_least16_t */
7020388Sadam#define	PRIiLEAST32	"i"	/* int_least32_t */
7120388Sadam#define	PRIiLEAST64	"lli"	/* int_least64_t */
7220388Sadam#define	PRIiFAST8	"i"	/* int_fast8_t */
7320388Sadam#define	PRIiFAST16	"i"	/* int_fast16_t */
7420388Sadam#define	PRIiFAST32	"i"	/* int_fast32_t */
7520388Sadam#define	PRIiFAST64	"lli"	/* int_fast64_t */
7620388Sadam#define	PRIiMAX		"ji"	/* intmax_t */
7720388Sadam#define	PRIiPTR		"i"	/* intptr_t */
7853943Sache
7953943Sache/* fprintf(3) macros for unsigned integers. */
8053943Sache
8153943Sache#define	PRIo8		"o"	/* uint8_t */
8253943Sache#define	PRIo16		"o"	/* uint16_t */
8353943Sache#define	PRIo32		"o"	/* uint32_t */
8453943Sache#define	PRIo64		"llo"	/* uint64_t */
8553943Sache#define	PRIoLEAST8	"o"	/* uint_least8_t */
8653943Sache#define	PRIoLEAST16	"o"	/* uint_least16_t */
8753943Sache#define	PRIoLEAST32	"o"	/* uint_least32_t */
8853943Sache#define	PRIoLEAST64	"llo"	/* uint_least64_t */
8953943Sache#define	PRIoFAST8	"o"	/* uint_fast8_t */
9053943Sache#define	PRIoFAST16	"o"	/* uint_fast16_t */
9153943Sache#define	PRIoFAST32	"o"	/* uint_fast32_t */
9253943Sache#define	PRIoFAST64	"llo"	/* uint_fast64_t */
9353943Sache#define	PRIoMAX		"jo"	/* uintmax_t */
9453943Sache#define	PRIoPTR		"o"	/* uintptr_t */
9553943Sache
9653943Sache#define	PRIu8		"u"	/* uint8_t */
9753943Sache#define	PRIu16		"u"	/* uint16_t */
98#define	PRIu32		"u"	/* uint32_t */
99#define	PRIu64		"llu"	/* uint64_t */
100#define	PRIuLEAST8	"u"	/* uint_least8_t */
101#define	PRIuLEAST16	"u"	/* uint_least16_t */
102#define	PRIuLEAST32	"u"	/* uint_least32_t */
103#define	PRIuLEAST64	"llu"	/* uint_least64_t */
104#define	PRIuFAST8	"u"	/* uint_fast8_t */
105#define	PRIuFAST16	"u"	/* uint_fast16_t */
106#define	PRIuFAST32	"u"	/* uint_fast32_t */
107#define	PRIuFAST64	"llu"	/* uint_fast64_t */
108#define	PRIuMAX		"ju"	/* uintmax_t */
109#define	PRIuPTR		"u"	/* uintptr_t */
110
111#define	PRIx8		"x"	/* uint8_t */
112#define	PRIx16		"x"	/* uint16_t */
113#define	PRIx32		"x"	/* uint32_t */
114#define	PRIx64		"llx"	/* uint64_t */
115#define	PRIxLEAST8	"x"	/* uint_least8_t */
116#define	PRIxLEAST16	"x"	/* uint_least16_t */
117#define	PRIxLEAST32	"x"	/* uint_least32_t */
118#define	PRIxLEAST64	"llx"	/* uint_least64_t */
119#define	PRIxFAST8	"x"	/* uint_fast8_t */
120#define	PRIxFAST16	"x"	/* uint_fast16_t */
121#define	PRIxFAST32	"x"	/* uint_fast32_t */
122#define	PRIxFAST64	"llx"	/* uint_fast64_t */
123#define	PRIxMAX		"jx"	/* uintmax_t */
124#define	PRIxPTR		"x"	/* uintptr_t */
125
126#define	PRIX8		"X"	/* uint8_t */
127#define	PRIX16		"X"	/* uint16_t */
128#define	PRIX32		"X"	/* uint32_t */
129#define	PRIX64		"llX"	/* uint64_t */
130#define	PRIXLEAST8	"X"	/* uint_least8_t */
131#define	PRIXLEAST16	"X"	/* uint_least16_t */
132#define	PRIXLEAST32	"X"	/* uint_least32_t */
133#define	PRIXLEAST64	"llX"	/* uint_least64_t */
134#define	PRIXFAST8	"X"	/* uint_fast8_t */
135#define	PRIXFAST16	"X"	/* uint_fast16_t */
136#define	PRIXFAST32	"X"	/* uint_fast32_t */
137#define	PRIXFAST64	"llX"	/* uint_fast64_t */
138#define	PRIXMAX		"jX"	/* uintmax_t */
139#define	PRIXPTR		"X"	/* uintptr_t */
140
141/* fscanf(3) macros for signed integers. */
142
143#define	SCNd8		"hhd"	/* int8_t */
144#define	SCNd16		"hd"	/* int16_t */
145#define	SCNd32		"d"	/* int32_t */
146#define	SCNd64		"lld"	/* int64_t */
147#define	SCNdLEAST8	"hhd"	/* int_least8_t */
148#define	SCNdLEAST16	"hd"	/* int_least16_t */
149#define	SCNdLEAST32	"d"	/* int_least32_t */
150#define	SCNdLEAST64	"lld"	/* int_least64_t */
151#define	SCNdFAST8	"d"	/* int_fast8_t */
152#define	SCNdFAST16	"d"	/* int_fast16_t */
153#define	SCNdFAST32	"d"	/* int_fast32_t */
154#define	SCNdFAST64	"lld"	/* int_fast64_t */
155#define	SCNdMAX		"jd"	/* intmax_t */
156#define	SCNdPTR		"d"	/* intptr_t */
157
158#define	SCNi8		"hhi"	/* int8_t */
159#define	SCNi16		"hi"	/* int16_t */
160#define	SCNi32		"i"	/* int32_t */
161#define	SCNi64		"lli"	/* int64_t */
162#define	SCNiLEAST8	"hhi"	/* int_least8_t */
163#define	SCNiLEAST16	"hi"	/* int_least16_t */
164#define	SCNiLEAST32	"i"	/* int_least32_t */
165#define	SCNiLEAST64	"lli"	/* int_least64_t */
166#define	SCNiFAST8	"i"	/* int_fast8_t */
167#define	SCNiFAST16	"i"	/* int_fast16_t */
168#define	SCNiFAST32	"i"	/* int_fast32_t */
169#define	SCNiFAST64	"lli"	/* int_fast64_t */
170#define	SCNiMAX		"ji"	/* intmax_t */
171#define	SCNiPTR		"i"	/* intptr_t */
172
173/* fscanf(3) macros for unsigned integers. */
174
175#define	SCNo8		"hho"	/* uint8_t */
176#define	SCNo16		"ho"	/* uint16_t */
177#define	SCNo32		"o"	/* uint32_t */
178#define	SCNo64		"llo"	/* uint64_t */
179#define	SCNoLEAST8	"hho"	/* uint_least8_t */
180#define	SCNoLEAST16	"ho"	/* uint_least16_t */
181#define	SCNoLEAST32	"o"	/* uint_least32_t */
182#define	SCNoLEAST64	"llo"	/* uint_least64_t */
183#define	SCNoFAST8	"o"	/* uint_fast8_t */
184#define	SCNoFAST16	"o"	/* uint_fast16_t */
185#define	SCNoFAST32	"o"	/* uint_fast32_t */
186#define	SCNoFAST64	"llo"	/* uint_fast64_t */
187#define	SCNoMAX		"jo"	/* uintmax_t */
188#define	SCNoPTR		"o"	/* uintptr_t */
189
190#define	SCNu8		"hhu"	/* uint8_t */
191#define	SCNu16		"hu"	/* uint16_t */
192#define	SCNu32		"u"	/* uint32_t */
193#define	SCNu64		"llu"	/* uint64_t */
194#define	SCNuLEAST8	"hhu"	/* uint_least8_t */
195#define	SCNuLEAST16	"hu"	/* uint_least16_t */
196#define	SCNuLEAST32	"u"	/* uint_least32_t */
197#define	SCNuLEAST64	"llu"	/* uint_least64_t */
198#define	SCNuFAST8	"u"	/* uint_fast8_t */
199#define	SCNuFAST16	"u"	/* uint_fast16_t */
200#define	SCNuFAST32	"u"	/* uint_fast32_t */
201#define	SCNuFAST64	"llu"	/* uint_fast64_t */
202#define	SCNuMAX		"ju"	/* uintmax_t */
203#define	SCNuPTR		"u"	/* uintptr_t */
204
205#define	SCNx8		"hhx"	/* uint8_t */
206#define	SCNx16		"hx"	/* uint16_t */
207#define	SCNx32		"x"	/* uint32_t */
208#define	SCNx64		"llx"	/* uint64_t */
209#define	SCNxLEAST8	"hhx"	/* uint_least8_t */
210#define	SCNxLEAST16	"hx"	/* uint_least16_t */
211#define	SCNxLEAST32	"x"	/* uint_least32_t */
212#define	SCNxLEAST64	"llx"	/* uint_least64_t */
213#define	SCNxFAST8	"x"	/* uint_fast8_t */
214#define	SCNxFAST16	"x"	/* uint_fast16_t */
215#define	SCNxFAST32	"x"	/* uint_fast32_t */
216#define	SCNxFAST64	"llx"	/* uint_fast64_t */
217#define	SCNxMAX		"jx"	/* uintmax_t */
218#define	SCNxPTR		"x"	/* uintptr_t */
219
220#endif /* !_MACHINE_INTTYPES_H_ */
221