I wrote a variable argument function(va function) that requires at least one string. Then i wrote another va function that requires at least one string. How do i pass all the arguments that get passed to the second va function in a call to the first.
like...
Code:void one(cont char* fmt, ...)
{
}
void two(const char* fmt, ...)
{
one(fmt, ...);
}
