Say you have 2 functions:
void func(int x,int y,...)
{
//do stuff
}
void func2(int x,...)
{
func(x,123,...);
}
How can you make this work, e.g pass the arg-list to the other function?
EDIT: this is a duplicate, can someone merge them or whatever?