I am wanting to add functionality to sprintf(). Specifically, I want to be able to pass my own POD data types to it, but I am unsure of how to do this.
Supposedly, if you create the va_list, you can pass it off to vsprintf() and have it do the hard work for you - but I still need to access the va_list, and extract items myself before passing the va_list to vsprintf().
For example, assume the following code:
struct mypod {
int somedata;
}; // just for example, you know
// somewhere else in the code...
mypod mp;
mp.somedata = 5325;
my_sprintf(myChrPtr, "%z", mp);
With the new %z code corresponding to my new data type.
I understand only pointers and POD structures can be passed, that's no big deal. I am wondering, though, that what happens if I get to the end of the va_list (by getting the args using va_arg()) and then pass it to vsprintf()?
Thank you!
*printf, I just create a routine to output a string from the struct/object, and then print the resulting string the way you would any other string. I think the code resulting code is a lot easier to follow. – BMitch May 8 '11 at 23:46zis a modifier (indicating asize_tvalue) in C99. – Jonathan Leffler May 9 '11 at 19:32