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