如何添加一个新的格式说明符,例如%k,它将以特定格式打印特定的用户定义结构?
我想做的事:-
struct k { //members }s1; printf ("%k",s1);
此printf应以用户定义的方式打印结构.
解决方法
是的,使用register_printf_function是可能的(但不可移植),有关详细信息,请参阅libc文档中的
12.13 Customizing printf:
The GNU C Library lets you define your own custom conversion
specifiers forprintf
template strings,to teachprintf
clever ways to
print the important data structures of your program.