Daniel Jacobowitz wrote: > For GDB, we're looking at fixing our printf built in command once and > for all. What we really need to do that is two separate interfaces > that can talk to each other: one for parsing a format string, and one > for converting arguments.
Do you need a standard printf, or an extensible printf? In the latter case, do you need to extend the basic types? The modifiers? The set of directives? Or do you also need to modify the implementation of existing, standardized directives? How does what you need compare with the register_printf_function / parse_printf_format facility in glibc's public header file <printf.h> ? Bruno