Is it possible to make a function with an unknown number of parameters without knowing ANY of them?
ie.
void Test(...)
I know you could do
void Test(va_alist)
with varargs.h, doesn't make sense that this functionality has been removed does it?
Thanks!
Dave