vote up 10 vote down star
2

Say I have a C function which takes a variable number of arguments: How can I call another function which expects a variable number of arguments from inside of it, passing all the arguments that got into the first function?

Example:

void format_string(char *fmt, ...);

void debug_print(int dbg_lvl, char *fmt, ...) {
    format_string(fmt, /* how do I pass all the arguments from '...'? */);
    fprintf(stdout, fmt);
 }
flag

Your example looks a bit weird to me, in that you pass fmt to both format_string() and to fprintf(). Should format_string() return a new string somehow? – Kristopher Johnson Oct 15 '08 at 17:14
Example doesn't make sense. It was just to show the outline of the code. – Vicent Marti Oct 15 '08 at 17:22
Actually that type of question should be googled rather asked. There is tones of information/documentation about. Just look in the linux implementation of printf for example... – Ilya Oct 15 '08 at 20:14
"should be googled": I disagree. Google has a lot of noise (unclear, often confusing information). Having a good (voted up, accepted answer) on stackoverflow really helps! – Ansgar Feb 6 at 9:53
Just to weigh in: I came to this question from google, and because it was stack overflow was highly confident that the answer would be useful. So ask away! – tenpn Feb 24 at 12:18

3 Answers

vote up 11 vote down check

To pass the ellipses on, you have to convert them to a va_list and use that va_list in your second function. Specifically;

void format_string(char *fmt,va_list argptr );


void debug_print(int dbg_lvl, char *fmt, ...) 
{    
 va_list argptr;
 va_start(argptr,fmt);
 format_string(fmt, argptr);
 va_end(argptr);
 fprintf(stdout, fmt);
}
link|flag
vote up 3 vote down

There's no way of calling (eg) printf without knowing how many arguments you're passing to it, unless you want to get into naughty and non-portable tricks.

The generally used solution is to always provide an alternate form of vararg functions, so printf has vprintf which takes a va_list in place of the .... The ... versions are just wrappers around the va_list versions.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.