What is the right way to implemet a function with this declaration:
void variadicFunction(int (*someFunction)(), ...)
such that it will call the function:
someFunction(...)
where ...
are the variadic parameters given to variadicFunction.
Thank you.