2 * Copyright (c) 2005 Poul-Henning Kamp
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * The API defined by glibc allows a renderer to take multiple arguments
37 * This is obviously usable for things like (ptr+len) pairs etc.
38 * But the do not actually provide support for it at the end of the day,
39 * they offer only one argument to the arginfo function, but do accept
40 * >1 returns, although the do not check the types of those arguments
42 * Be compatible for now.
44 #define __PRINTFMAXARG 2
47 /* GLIBC compatible */
51 unsigned is_long_double
;
64 /* FreeBSD extensions */
77 void *arg
[__PRINTFMAXARG
];
81 PA_INT
= (1 << 0), /* int */
82 PA_CHAR
= (1 << 1), /* int, cast to char */
83 PA_WCHAR
= (1 << 2), /* wide char */
84 PA_STRING
= (1 << 3), /* const char * (with '\0') */
85 PA_WSTRING
= (1 << 4), /* const wchar_t * */
86 PA_POINTER
= (1 << 5), /* void * */
87 PA_FLOAT
= (1 << 6), /* float */
88 PA_DOUBLE
= (1 << 7) /* double */
91 #define PA_FLAG_MASK 0xff0000
92 #define PA_FLAG_LONG_LONG (1 << 16)
93 #define PA_FLAG_LONG (1 << 17)
94 #define PA_FLAG_SHORT (1 << 18)
95 #define PA_FLAG_PTR (1 << 19)
96 #define PA_FLAG_QUAD (1 << 20)
97 #define PA_FLAG_INTMAX (1 << 21)
98 #define PA_FLAG_SIZE (1 << 22)
99 #define PA_FLAG_PTRDIFF (1 << 23)
100 #define PA_FLAG_LONG_DOUBLE PA_FLAG_LONG_LONG
102 typedef int printf_arginfo_function(const struct printf_info
*, size_t, int *);
103 typedef int printf_function(FILE *, const struct printf_info
*, const void *const *);
105 /* FreeBSD extension */
107 typedef int printf_render(struct __printf_io
*, const struct printf_info
*, const void *const *);
110 extern const char __lowercase_hex
[17];
111 extern const char __uppercase_hex
[17];
113 void __printf_flush(struct __printf_io
*io
);
114 int __printf_puts(struct __printf_io
*io
, const void *ptr
, int len
);
115 int __printf_pad(struct __printf_io
*io
, int n
, int zero
);
116 int __printf_out(struct __printf_io
*io
, const struct printf_info
*pi
, const void *ptr
, int len
);
118 int __xvprintf(FILE *fp
, const char *fmt0
, va_list ap
);
119 extern int __use_xprintf
;
122 int register_printf_function(int spec
, printf_function
*render
, printf_arginfo_function
*arginfo
);
125 int register_printf_render(int spec
, printf_render
*render
, printf_arginfo_function
*arginfo
);
126 int register_printf_render_std(const char *specs
);
128 /* vprintf_errno.c */
129 printf_arginfo_function __printf_arginfo_errno
;
130 printf_render __printf_render_errno
;
132 /* vprintf_float.c */
133 printf_arginfo_function __printf_arginfo_float
;
134 printf_render __printf_render_float
;
136 /* vprintf_hexdump.c */
137 printf_arginfo_function __printf_arginfo_hexdump
;
138 printf_render __printf_render_hexdump
;
141 printf_arginfo_function __printf_arginfo_ptr
;
142 printf_arginfo_function __printf_arginfo_int
;
143 printf_render __printf_render_ptr
;
144 printf_render __printf_render_int
;
146 /* vprintf_quoute.c */
147 printf_arginfo_function __printf_arginfo_quote
;
148 printf_render __printf_render_quote
;
151 printf_arginfo_function __printf_arginfo_chr
;
152 printf_render __printf_render_chr
;
153 printf_arginfo_function __printf_arginfo_str
;
154 printf_render __printf_render_str
;
157 printf_arginfo_function __printf_arginfo_time
;
158 printf_render __printf_render_time
;
161 printf_arginfo_function __printf_arginfo_vis
;
162 printf_render __printf_render_vis
;
164 #endif /* !_PRINTF_H */